diff options
Diffstat (limited to 'khexedit/exportdialog.cc')
-rw-r--r-- | khexedit/exportdialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/khexedit/exportdialog.cc b/khexedit/exportdialog.cc index df99fef..7ea3573 100644 --- a/khexedit/exportdialog.cc +++ b/khexedit/exportdialog.cc @@ -47,7 +47,7 @@ CExportDialog::CExportDialog( TQWidget *tqparent, char *name, bool modal ) readConfiguration(); TQString path = mDestination.fileInput->text(); - int index = path.tqfindRev( '/' ); + int index = path.findRev( '/' ); if( index != -1 ) { mWorkDir = path.left( index+1 ); } } @@ -474,7 +474,7 @@ void CExportDialog::browserClicked( void ) return; } - int index = url.tqfindRev( '/' ); + int index = url.findRev( '/' ); if( index != -1 ) { mWorkDir = url.left( index+1 ); |