diff options
Diffstat (limited to 'libk3b/core/k3bversion.cpp')
-rw-r--r-- | libk3b/core/k3bversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/core/k3bversion.cpp b/libk3b/core/k3bversion.cpp index e7ae9b0..0eb6f19 100644 --- a/libk3b/core/k3bversion.cpp +++ b/libk3b/core/k3bversion.cpp @@ -101,7 +101,7 @@ void K3bVersion::setVersion( const TQString& v ) // suffix = s and num = -1 is returned void K3bVersion::splitVersionString( const TQString& s, int& num, TQString& suffix ) { - int pos = s.tqfind( TQRegExp("\\D") ); + int pos = s.find( TQRegExp("\\D") ); if( pos < 0 ) { num = s.toInt(); suffix = ""; |