summaryrefslogtreecommitdiffstats
path: root/digikam/showfoto/showfoto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/showfoto/showfoto.cpp')
-rw-r--r--digikam/showfoto/showfoto.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/digikam/showfoto/showfoto.cpp b/digikam/showfoto/showfoto.cpp
index 2ebde81..4257583 100644
--- a/digikam/showfoto/showfoto.cpp
+++ b/digikam/showfoto/showfoto.cpp
@@ -215,22 +215,22 @@ ShowFoto::ShowFoto(const KURL::List& urlList)
d->BCGAction->setDelayed(false);
TDEAction *incGammaAction = new TDEAction(i18n("Increase Gamma"), 0, ALT+Key_G,
- this, TQT_SLOT(slotChangeBCG()),
+ this, TQ_SLOT(slotChangeBCG()),
actionCollection(), "gamma_plus");
TDEAction *decGammaAction = new TDEAction(i18n("Decrease Gamma"), 0, ALT+SHIFT+Key_G,
- this, TQT_SLOT(slotChangeBCG()),
+ this, TQ_SLOT(slotChangeBCG()),
actionCollection(), "gamma_minus");
TDEAction *incBrightAction = new TDEAction(i18n("Increase Brightness"), 0, ALT+Key_B,
- this, TQT_SLOT(slotChangeBCG()),
+ this, TQ_SLOT(slotChangeBCG()),
actionCollection(), "brightness_plus");
TDEAction *decBrightAction = new TDEAction(i18n("Decrease Brightness"), 0, ALT+SHIFT+Key_B,
- this, TQT_SLOT(slotChangeBCG()),
+ this, TQ_SLOT(slotChangeBCG()),
actionCollection(), "brightness_minus");
TDEAction *incContrastAction = new TDEAction(i18n("Increase Contrast"), 0, ALT+Key_C,
- this, TQT_SLOT(slotChangeBCG()),
+ this, TQ_SLOT(slotChangeBCG()),
actionCollection(), "contrast_plus");
TDEAction *decContrastAction = new TDEAction(i18n("Decrease Contrast"), 0, ALT+SHIFT+Key_C,
- this, TQT_SLOT(slotChangeBCG()),
+ this, TQ_SLOT(slotChangeBCG()),
actionCollection(), "contrast_minus");
d->BCGAction->insert(incBrightAction);
@@ -392,17 +392,17 @@ void ShowFoto::setupConnections()
{
setupStandardConnections();
- connect(d->thumbBar, TQT_SIGNAL(signalURLSelected(const KURL&)),
- this, TQT_SLOT(slotOpenURL(const KURL&)));
+ connect(d->thumbBar, TQ_SIGNAL(signalURLSelected(const KURL&)),
+ this, TQ_SLOT(slotOpenURL(const KURL&)));
- connect(d->thumbBar, TQT_SIGNAL(signalItemAdded()),
- this, TQT_SLOT(slotUpdateItemInfo()));
+ connect(d->thumbBar, TQ_SIGNAL(signalItemAdded()),
+ this, TQ_SLOT(slotUpdateItemInfo()));
- connect(this, TQT_SIGNAL(signalSelectionChanged(const TQRect &)),
- d->rightSidebar, TQT_SLOT(slotImageSelectionChanged(const TQRect &)));
+ connect(this, TQ_SIGNAL(signalSelectionChanged(const TQRect &)),
+ d->rightSidebar, TQ_SLOT(slotImageSelectionChanged(const TQRect &)));
- connect(this, TQT_SIGNAL(signalNoCurrentItem()),
- d->rightSidebar, TQT_SLOT(slotNoCurrentItem()));
+ connect(this, TQ_SIGNAL(signalNoCurrentItem()),
+ d->rightSidebar, TQ_SLOT(slotNoCurrentItem()));
}
void ShowFoto::setupUserArea()
@@ -478,24 +478,24 @@ void ShowFoto::setupActions()
// Extra 'File' menu actions ---------------------------------------------
- d->fileOpenAction = KStdAction::open(this, TQT_SLOT(slotOpenFile()),
+ d->fileOpenAction = KStdAction::open(this, TQ_SLOT(slotOpenFile()),
actionCollection(), "showfoto_open_file");
d->openFilesInFolderAction = new TDEAction(i18n("Open folder"),
"folder_image",
CTRL+SHIFT+Key_O,
this,
- TQT_SLOT(slotOpenFilesInFolder()),
+ TQ_SLOT(slotOpenFilesInFolder()),
actionCollection(),
"showfoto_open_folder");
- KStdAction::quit(this, TQT_SLOT(close()), actionCollection(), "showfoto_quit");
+ KStdAction::quit(this, TQ_SLOT(close()), actionCollection(), "showfoto_quit");
// Extra 'View' menu actions ---------------------------------------------
d->showBarAction = new TDEToggleAction(i18n("Show Thumbnails"), 0,
CTRL+Key_T,
- this, TQT_SLOT(slotToggleShowBar()),
+ this, TQ_SLOT(slotToggleShowBar()),
actionCollection(), "shofoto_showthumbs");
// --- Create the gui --------------------------------------------------------------
@@ -1114,8 +1114,8 @@ void ShowFoto::slotDeleteCurrentItem()
else
{
TDEIO::Job* job = TDEIO::del( urlCurrent );
- connect( job, TQT_SIGNAL(result( TDEIO::Job* )),
- this, TQT_SLOT(slotDeleteCurrentItemResult( TDEIO::Job*)) );
+ connect( job, TQ_SIGNAL(result( TDEIO::Job* )),
+ this, TQ_SLOT(slotDeleteCurrentItemResult( TDEIO::Job*)) );
}
}
else
@@ -1128,8 +1128,8 @@ void ShowFoto::slotDeleteCurrentItem()
}
TDEIO::Job* job = TDEIO::move( urlCurrent, dest );
- connect( job, TQT_SIGNAL(result( TDEIO::Job* )),
- this, TQT_SLOT(slotDeleteCurrentItemResult( TDEIO::Job*)) );
+ connect( job, TQ_SIGNAL(result( TDEIO::Job* )),
+ this, TQ_SLOT(slotDeleteCurrentItemResult( TDEIO::Job*)) );
}
}