diff options
Diffstat (limited to 'kmail/snippetdlg.cpp')
| -rw-r--r-- | kmail/snippetdlg.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/kmail/snippetdlg.cpp b/kmail/snippetdlg.cpp index 60bf689e..7e1df3b7 100644 --- a/kmail/snippetdlg.cpp +++ b/kmail/snippetdlg.cpp @@ -30,7 +30,7 @@   *  name 'name' and widget flags set to 'f'.   *   *  The dialog will by default be modeless, unless you set 'modal' to - *  TRUE to construct a modal dialog. + *  true to construct a modal dialog.   */  SnippetDlg::SnippetDlg( TDEActionCollection* ac, TQWidget* parent, const char* name, bool modal, WFlags fl )      : SnippetDlgBase( parent, name, modal, fl ), actionCollection( ac ) @@ -40,14 +40,14 @@ SnippetDlg::SnippetDlg( TDEActionCollection* ac, TQWidget* parent, const char* n      textLabel3 = new TQLabel( this, "textLabel3" );      keyButton = new KKeyButton( this ); -    connect( keyButton, TQT_SIGNAL( capturedShortcut( const TDEShortcut& ) ), -             this, TQT_SLOT( slotCapturedShortcut( const TDEShortcut& ) ) ); +    connect( keyButton, TQ_SIGNAL( capturedShortcut( const TDEShortcut& ) ), +             this, TQ_SLOT( slotCapturedShortcut( const TDEShortcut& ) ) );      btnAdd->setEnabled( false ); -    connect( snippetName, TQT_SIGNAL(textChanged(const TQString &)), -             this, TQT_SLOT(slotTextChanged(const TQString &)) ); -    connect( snippetName, TQT_SIGNAL(returnPressed()), -             this, TQT_SLOT(slotReturnPressed()) ); +    connect( snippetName, TQ_SIGNAL(textChanged(const TQString &)), +             this, TQ_SLOT(slotTextChanged(const TQString &)) ); +    connect( snippetName, TQ_SIGNAL(returnPressed()), +             this, TQ_SLOT(slotReturnPressed()) );      layout3->addWidget( textLabel3, 7, 0 );      layout3->addWidget( keyButton, 7, 1 ); | 
