summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/superimpose/dirselectwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/imageplugins/superimpose/dirselectwidget.cpp')
-rw-r--r--digikam/imageplugins/superimpose/dirselectwidget.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/digikam/imageplugins/superimpose/dirselectwidget.cpp b/digikam/imageplugins/superimpose/dirselectwidget.cpp
index 858bbd2..4856d73 100644
--- a/digikam/imageplugins/superimpose/dirselectwidget.cpp
+++ b/digikam/imageplugins/superimpose/dirselectwidget.cpp
@@ -93,8 +93,8 @@ void DirSelectWidget::load()
{
if ( d->m_pendingPath.isEmpty() )
{
- disconnect( d->m_item, TQT_SIGNAL( populateFinished(KFileTreeViewItem *) ),
- this, TQT_SLOT( load() ) );
+ disconnect( d->m_item, TQ_SIGNAL( populateFinished(KFileTreeViewItem *) ),
+ this, TQ_SLOT( load() ) );
emit folderItemSelected(currentURL());
return;
@@ -135,8 +135,8 @@ void DirSelectWidget::setCurrentPath(KURL currentUrl)
if ( !d->m_pendingPath[0].isEmpty() )
d->m_pendingPath.prepend( "" ); // ensure we open the root first.
- connect( d->m_item, TQT_SIGNAL( populateFinished(KFileTreeViewItem *) ),
- this, TQT_SLOT( load() ) );
+ connect( d->m_item, TQ_SIGNAL( populateFinished(KFileTreeViewItem *) ),
+ this, TQ_SLOT( load() ) );
load();
}
@@ -159,13 +159,13 @@ void DirSelectWidget::setRootPath(KURL rootUrl, KURL currentUrl)
if ( !d->m_pendingPath[0].isEmpty() )
d->m_pendingPath.prepend( "" ); // ensure we open the root first.
- connect( d->m_item, TQT_SIGNAL( populateFinished(KFileTreeViewItem *) ),
- this, TQT_SLOT( load() ) );
+ connect( d->m_item, TQ_SIGNAL( populateFinished(KFileTreeViewItem *) ),
+ this, TQ_SLOT( load() ) );
load();
- connect( this, TQT_SIGNAL( executed(TQListViewItem *) ),
- this, TQT_SLOT( slotFolderSelected(TQListViewItem *) ) );
+ connect( this, TQ_SIGNAL( executed(TQListViewItem *) ),
+ this, TQ_SLOT( slotFolderSelected(TQListViewItem *) ) );
}
KURL DirSelectWidget::rootPath(void)