summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sidebar/sq_previewwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/sidebar/sq_previewwidget.cpp')
-rw-r--r--ksquirrel/sidebar/sq_previewwidget.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/ksquirrel/sidebar/sq_previewwidget.cpp b/ksquirrel/sidebar/sq_previewwidget.cpp
index 4ff93da..db039a7 100644
--- a/ksquirrel/sidebar/sq_previewwidget.cpp
+++ b/ksquirrel/sidebar/sq_previewwidget.cpp
@@ -55,20 +55,20 @@ SQ_PreviewWidget::SQ_PreviewWidget(TQWidget *parent, const char *name)
rereadColor();
- down = new SQ_Downloader(TQT_TQOBJECT(this));
- connect(down, TQT_SIGNAL(result(const KURL &)), TQT_TQOBJECT(this), TQT_SLOT(slotDownloadResult(const KURL &)));
- connect(down, TQT_SIGNAL(percents(int)), TQT_TQOBJECT(this), TQT_SLOT(slotDownloadPercents(int)));
+ down = new SQ_Downloader(this);
+ connect(down, TQT_SIGNAL(result(const KURL &)), this, TQT_SLOT(slotDownloadResult(const KURL &)));
+ connect(down, TQT_SIGNAL(percents(int)), this, TQT_SLOT(slotDownloadPercents(int)));
popup = new TDEPopupMenu;
- popup->insertItem(i18n("Background color..."), TQT_TQOBJECT(this), TQT_SLOT(slotBackground()));
- popup->insertItem(i18n("Text color..."), TQT_TQOBJECT(this), TQT_SLOT(slotText()));
+ popup->insertItem(i18n("Background color..."), this, TQT_SLOT(slotBackground()));
+ popup->insertItem(i18n("Text color..."), this, TQT_SLOT(slotText()));
popup->insertSeparator();
- popup->insertItem(i18n("Go to first image")+"\tHome", TQT_TQOBJECT(this), TQT_SIGNAL(first()));
- popup->insertItem(i18n("Next image")+"\tSpace", TQT_TQOBJECT(this), TQT_SIGNAL(next()));
- popup->insertItem(i18n("Previous image")+"\tBackSpace", TQT_TQOBJECT(this), TQT_SIGNAL(previous()));
- popup->insertItem(i18n("Go to last image")+"\tEnd", TQT_TQOBJECT(this), TQT_SIGNAL(last()));
+ popup->insertItem(i18n("Go to first image")+"\tHome", this, TQT_SIGNAL(first()));
+ popup->insertItem(i18n("Next image")+"\tSpace", this, TQT_SIGNAL(next()));
+ popup->insertItem(i18n("Previous image")+"\tBackSpace", this, TQT_SIGNAL(previous()));
+ popup->insertItem(i18n("Go to last image")+"\tEnd", this, TQT_SIGNAL(last()));
popup->insertSeparator();
- popup->insertItem(i18n("Execute")+"\tEnter", TQT_TQOBJECT(this), TQT_SIGNAL(execute()));
+ popup->insertItem(i18n("Execute")+"\tEnter", this, TQT_SIGNAL(execute()));
multi_pix = SQ_IconLoader::instance()->loadIcon("application-vnd.tde.tdemultiple", TDEIcon::Desktop, TDEIcon::SizeSmall);