diff options
Diffstat (limited to 'konq-plugins/kimgalleryplugin/imgallerydialog.cpp')
-rw-r--r-- | konq-plugins/kimgalleryplugin/imgallerydialog.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/konq-plugins/kimgalleryplugin/imgallerydialog.cpp b/konq-plugins/kimgalleryplugin/imgallerydialog.cpp index e86dd57..b6be06d 100644 --- a/konq-plugins/kimgalleryplugin/imgallerydialog.cpp +++ b/konq-plugins/kimgalleryplugin/imgallerydialog.cpp @@ -191,8 +191,8 @@ void KIGPDialog::setupDirectoryPage(const TQString& path) { m_imageNameReq = new KURLRequester(path + "images.html", page); label->setBuddy( m_imageNameReq ); dvlay->addWidget(m_imageNameReq); - connect( m_imageNameReq, TQT_SIGNAL(textChanged(const TQString&)), - this, TQT_SLOT(imageUrlChanged(const TQString&)) ); + connect( m_imageNameReq, TQ_SIGNAL(textChanged(const TQString&)), + this, TQ_SLOT(imageUrlChanged(const TQString&)) ); TQWhatsThis::add( m_imageNameReq, whatsThis ); const bool recurseSubDir = m_config->readBoolEntry("RecurseSubDirectories", false); @@ -215,8 +215,8 @@ void KIGPDialog::setupDirectoryPage(const TQString& path) { TQWhatsThis::add( m_recursionLevel, whatsThis ); - connect(m_recurseSubDir, TQT_SIGNAL( toggled(bool) ), - m_recursionLevel, TQT_SLOT( setEnabled(bool) ) ); + connect(m_recurseSubDir, TQ_SIGNAL( toggled(bool) ), + m_recursionLevel, TQ_SLOT( setEnabled(bool) ) ); dvlay->addWidget(m_recurseSubDir); dvlay->addWidget(m_recursionLevel); @@ -262,10 +262,10 @@ void KIGPDialog::setupDirectoryPage(const TQString& path) { dvlay->addWidget(m_commentFileReq); TQWhatsThis::add( m_commentFileReq, whatsThis ); - connect(m_useCommentFile, TQT_SIGNAL(toggled(bool)), - label, TQT_SLOT(setEnabled(bool))); - connect(m_useCommentFile, TQT_SIGNAL(toggled(bool)), - m_commentFileReq, TQT_SLOT(setEnabled(bool))); + connect(m_useCommentFile, TQ_SIGNAL(toggled(bool)), + label, TQ_SLOT(setEnabled(bool))); + connect(m_useCommentFile, TQ_SIGNAL(toggled(bool)), + m_commentFileReq, TQ_SLOT(setEnabled(bool))); dvlay->addStretch(1); } @@ -317,8 +317,8 @@ void KIGPDialog::setupThumbnailPage(const TQString& path) { m_colorDepth->setEnabled(colorDepthSet); hlay4->addWidget( m_colorDepth ); - connect(m_colorDepthSet, TQT_SIGNAL( toggled(bool) ), - m_colorDepth, TQT_SLOT( setEnabled(bool) ) ); + connect(m_colorDepthSet, TQ_SIGNAL( toggled(bool) ), + m_colorDepth, TQ_SLOT( setEnabled(bool) ) ); vlay->addStretch(1); |