diff options
Diffstat (limited to 'vcs/cvsservice/cvsentry.cpp')
-rw-r--r-- | vcs/cvsservice/cvsentry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcs/cvsservice/cvsentry.cpp b/vcs/cvsservice/cvsentry.cpp index eb8ca704..bf478f7c 100644 --- a/vcs/cvsservice/cvsentry.cpp +++ b/vcs/cvsservice/cvsentry.cpp @@ -91,7 +91,7 @@ void CVSEntry::parse( const TQString &aLine, const CVSDir& dir ) m_state = Added; else if ( revision().length() > 3 && revision()[0] == '-' ) m_state = Removed; - else if ( timeStamp().tqfind('+') >= 0 ) + else if ( timeStamp().find('+') >= 0 ) m_state = Conflict; else { @@ -184,4 +184,4 @@ VCSFileInfo CVSEntry::toVCSFileInfo() const return VCSFileInfo( fileName(), revision(), revision(), fileState ); } -//kate: space-indent on; indent-width 4; tqreplace-tabs on; +//kate: space-indent on; indent-width 4; replace-tabs on; |