diff options
Diffstat (limited to 'kig/modes/typesdialog.cpp')
-rw-r--r-- | kig/modes/typesdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kig/modes/typesdialog.cpp b/kig/modes/typesdialog.cpp index f023d288..df061888 100644 --- a/kig/modes/typesdialog.cpp +++ b/kig/modes/typesdialog.cpp @@ -40,7 +40,7 @@ #include <tqfile.h> #include <tqpixmap.h> #include <tqstringlist.h> -#include <textstream.h> +#include <tqtextstream.h> #include <algorithm> #include <vector> @@ -108,8 +108,8 @@ TypesDialog::~TypesDialog() void TypesDialog::helpSlot() { - kapp->invokeHelp( TQString::fromLatin1( "working-with-types" ), - TQString::fromLatin1( "kig" ) ); + kapp->invokeHelp( TQString::tqfromLatin1( "working-with-types" ), + TQString::tqfromLatin1( "kig" ) ); } void TypesDialog::okSlot() @@ -173,7 +173,7 @@ void TypesDialog::exportType() TQFile fi( file_name ); if ( fi.exists() ) if ( KMessageBox::warningContinueCancel( this, i18n( "The file \"%1\" already exists. " - "Do you wish to overwrite it?" ).arg( fi.name() ), + "Do you wish to overwrite it?" ).tqarg( fi.name() ), i18n( "Overwrite File?" ), i18n("Overwrite") ) == KMessageBox::Cancel ) return; MacroList::instance()->save( types, file_name ); |