diff options
Diffstat (limited to 'kword/KWInsertPicDia.cpp')
-rw-r--r-- | kword/KWInsertPicDia.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kword/KWInsertPicDia.cpp b/kword/KWInsertPicDia.cpp index 55b8219e..002b0bf0 100644 --- a/kword/KWInsertPicDia.cpp +++ b/kword/KWInsertPicDia.cpp @@ -94,7 +94,7 @@ KWInsertPicDia::KWInsertPicDia( TQWidget *parent, bool _inline, bool _keepRatio, TQPushButton *pbImage = new TQPushButton( i18n( "Choose &Picture..." ), page ); grid->addWidget( pbImage, 0, 0 ); - connect( pbImage, TQT_SIGNAL( clicked() ), TQT_SLOT( slotChooseImage() ) ); + connect( pbImage, TQ_SIGNAL( clicked() ), TQ_SLOT( slotChooseImage() ) ); m_cbInline = new TQCheckBox( i18n( "Insert picture inline" ), page ); grid->addWidget( m_cbInline, 1, 0 ); @@ -138,7 +138,7 @@ void KWInsertPicDia::slotChooseImage() { kdDebug() << "KWInsertPicDia::slotChooseImage cancelled by user." << endl; // Close, but delayed, otherwise it won't work (we only return from the ctor) - TQTimer::singleShot( 0, this, TQT_SLOT( cancel() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( cancel() ) ); return; } enableButtonOK ( m_preview->setPicture( m_picture ) ); |