diff options
Diffstat (limited to 'kmail/archivefolderdialog.cpp')
-rw-r--r-- | kmail/archivefolderdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/archivefolderdialog.cpp b/kmail/archivefolderdialog.cpp index ca10bd449..b1422f476 100644 --- a/kmail/archivefolderdialog.cpp +++ b/kmail/archivefolderdialog.cpp @@ -46,7 +46,7 @@ static TQString standardArchivePath( const TQString &folderName ) } return currentPath + i18n( "Start of the filename for a mail archive file" , "Archive" ) + "_" + folderName + - "_" + TQDate::tqcurrentDate().toString( TQt::ISODate ) + ".tar.bz2"; + "_" + TQDate::tqcurrentDate().toString( Qt::ISODate ) + ".tar.bz2"; } ArchiveFolderDialog::ArchiveFolderDialog( TQWidget *tqparent ) @@ -194,7 +194,7 @@ void ArchiveFolderDialog::slotFixFileExtension() // First, try to find the extension of the file name and remove it for( int i = 0; i < numExtensions; i++ ) { - int index = fileName.lower().findRev( sortedExtensions[i] ); + int index = fileName.lower().tqfindRev( sortedExtensions[i] ); if ( index != -1 ) { fileName = fileName.left( fileName.length() - TQString( sortedExtensions[i] ).length() ); break; |