diff options
Diffstat (limited to 'cervisia/historydlg.cpp')
-rw-r--r-- | cervisia/historydlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cervisia/historydlg.cpp b/cervisia/historydlg.cpp index cb519b0b..b200002d 100644 --- a/cervisia/historydlg.cpp +++ b/cervisia/historydlg.cpp @@ -40,7 +40,7 @@ static TQDateTime parseDate(const TQString& date, const TQString& _time, const T { // cvs history only prints hh:mm but parseDateISO8601 needs hh:mm:ss TQString time(_time); - if( time.tqcontains(':') == 1 ) + if( time.contains(':') == 1 ) time += ":00"; TQDateTime dateTime; |