summaryrefslogtreecommitdiffstats
path: root/kmail/snippetdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/snippetdlg.cpp')
-rw-r--r--kmail/snippetdlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kmail/snippetdlg.cpp b/kmail/snippetdlg.cpp
index 76b4fe17..61c75db8 100644
--- a/kmail/snippetdlg.cpp
+++ b/kmail/snippetdlg.cpp
@@ -16,8 +16,8 @@
#include <kdialog.h>
#include <klocale.h>
-#include <qlabel.h>
-#include <qlayout.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
#include <kpushbutton.h>
#include <ktextedit.h>
#include "kkeybutton.h"
@@ -31,16 +31,16 @@
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
-SnippetDlg::SnippetDlg( KActionCollection* ac, QWidget* parent, const char* name, bool modal, WFlags fl )
+SnippetDlg::SnippetDlg( KActionCollection* ac, TQWidget* parent, const char* name, bool modal, WFlags fl )
: SnippetDlgBase( parent, name, modal, fl ), actionCollection( ac )
{
if ( !name )
setName( "SnippetDlg" );
- textLabel3 = new QLabel( this, "textLabel3" );
+ textLabel3 = new TQLabel( this, "textLabel3" );
keyButton = new KKeyButton( this );
- connect( keyButton, SIGNAL( capturedShortcut( const KShortcut& ) ),
- this, SLOT( slotCapturedShortcut( const KShortcut& ) ) );
+ connect( keyButton, TQT_SIGNAL( capturedShortcut( const KShortcut& ) ),
+ this, TQT_SLOT( slotCapturedShortcut( const KShortcut& ) ) );
layout3->addWidget( textLabel3, 7, 0 );
layout3->addWidget( keyButton, 7, 1 );
@@ -90,7 +90,7 @@ void SnippetDlg::slotCapturedShortcut( const KShortcut& sc )
keyButton->setShortcut( KShortcut::null(), false );
} else {
if( !shortcutIsValid( actionCollection, sc ) ) {
- QString msg( i18n( "The selected shortcut is already used, "
+ TQString msg( i18n( "The selected shortcut is already used, "
"please select a different one." ) );
KMessageBox::sorry( this, msg );
} else {