diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 33881ea4441221b1ca0789a72c4c7249d923a0df (patch) | |
tree | ffe5603da373bb346bb29c8e0f533776f66560a5 /src/k3btempdirselectionwidget.cpp | |
parent | 6d99e1e138ae5aafc10f14682c48221bf563152e (diff) | |
download | k3b-33881ea4441221b1ca0789a72c4c7249d923a0df.tar.gz k3b-33881ea4441221b1ca0789a72c4c7249d923a0df.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3btempdirselectionwidget.cpp')
-rw-r--r-- | src/k3btempdirselectionwidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/k3btempdirselectionwidget.cpp b/src/k3btempdirselectionwidget.cpp index b565f21..a91da03 100644 --- a/src/k3btempdirselectionwidget.cpp +++ b/src/k3btempdirselectionwidget.cpp @@ -93,7 +93,7 @@ unsigned long K3bTempDirSelectionWidget::freeTempSpace() const TQString path = m_editDirectory->url(); if( !TQFile::exists( path ) ) - path.truncate( path.tqfindRev('/') ); + path.truncate( path.findRev('/') ); unsigned long size; K3b::kbFreeOnFs( path, size, m_freeTempSpace ); @@ -184,7 +184,7 @@ TQString K3bTempDirSelectionWidget::tempDirectory() const // now we treat the last section as a filename and return the path // in front of it - td.truncate( td.tqfindRev( '/' ) + 1 ); + td.truncate( td.findRev( '/' ) + 1 ); return td; } @@ -248,7 +248,7 @@ void K3bTempDirSelectionWidget::setDefaultImageFileName( const TQString& name ) } m_defaultImageFileName = name; - if ( !m_defaultImageFileName.tqcontains( '.' ) ) { + if ( !m_defaultImageFileName.contains( '.' ) ) { m_defaultImageFileName += ".iso"; } fixTempPath( changeImageName ); |