summaryrefslogtreecommitdiffstats
path: root/ksquirrel/ksquirrelpart/sq_imageproperties.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/ksquirrelpart/sq_imageproperties.ui.h')
-rw-r--r--ksquirrel/ksquirrelpart/sq_imageproperties.ui.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ksquirrel/ksquirrelpart/sq_imageproperties.ui.h b/ksquirrel/ksquirrelpart/sq_imageproperties.ui.h
index c93f0d9..41926a2 100644
--- a/ksquirrel/ksquirrelpart/sq_imageproperties.ui.h
+++ b/ksquirrel/ksquirrelpart/sq_imageproperties.ui.h
@@ -25,9 +25,9 @@
void SQ_ImageProperties::init()
{
menu = new TDEPopupMenu;
- copy = KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(slotCopyString()), 0);
- copyentry = new TDEAction(i18n("Copy entry"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotCopyEntry()), 0);
- copyall = new TDEAction(i18n("Copy all entries"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotCopyAll()), 0);
+ copy = KStdAction::copy(this, TQT_SLOT(slotCopyString()), 0);
+ copyentry = new TDEAction(i18n("Copy entry"), 0, this, TQT_SLOT(slotCopyEntry()), 0);
+ copyall = new TDEAction(i18n("Copy all entries"), 0, this, TQT_SLOT(slotCopyAll()), 0);
copyentry->setIcon(copy->icon());
copyall->setIcon(copy->icon());
@@ -85,7 +85,7 @@ void SQ_ImageProperties::setURL(const KURL &_url)
void SQ_ImageProperties::setFileParams()
{
TDEIO::Job *stjob = TDEIO::stat(url, false);
- connect(stjob, TQT_SIGNAL(result(TDEIO::Job *)), TQT_TQOBJECT(this), TQT_SLOT(slotStatResult(TDEIO::Job *)));
+ connect(stjob, TQT_SIGNAL(result(TDEIO::Job *)), this, TQT_SLOT(slotStatResult(TDEIO::Job *)));
#ifdef SQ_HAVE_KEXIF
SQ_Config::instance()->setGroup("GL view");
@@ -98,7 +98,7 @@ void SQ_ImageProperties::setFileParams()
TQButtonGroup *gr = new TQButtonGroup(tabWidgetEXIF, "EXIF mode");
gr->setFrameShape(TQFrame::NoFrame);
gr->setExclusive(true);
- connect(gr, TQT_SIGNAL(clicked(int)), TQT_TQOBJECT(this), TQT_SLOT(slotModeClicked(int)));
+ connect(gr, TQT_SIGNAL(clicked(int)), this, TQT_SLOT(slotModeClicked(int)));
TQGridLayout *pageLayoutGR = new TQGridLayout(gr, 1, 3, 0, -1, "tabWidgetEXIFGRLayout");