summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/imageviewer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/imageviewer.cpp')
-rw-r--r--kstars/kstars/imageviewer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kstars/kstars/imageviewer.cpp b/kstars/kstars/imageviewer.cpp
index 265d8021..fa6194c2 100644
--- a/kstars/kstars/imageviewer.cpp
+++ b/kstars/kstars/imageviewer.cpp
@@ -37,9 +37,9 @@ ImageViewer::ImageViewer (const KURL *url, const TQString &capText, TQWidget *pa
// JH: easier to just disable its mobility
toolBar()->setMovingEnabled( false );
- TDEAction *action = new TDEAction (i18n ("Close Window"), "window-close", CTRL+Key_Q, this, TQT_SLOT (close()), actionCollection());
+ TDEAction *action = new TDEAction (i18n ("Close Window"), "window-close", CTRL+Key_Q, this, TQ_SLOT (close()), actionCollection());
action->plug (toolBar());
- action = new TDEAction (i18n ("Save Image"), "document-save", CTRL+Key_S, this, TQT_SLOT (saveFileToDisc()), actionCollection());
+ action = new TDEAction (i18n ("Save Image"), "document-save", CTRL+Key_S, this, TQ_SLOT (saveFileToDisc()), actionCollection());
action->plug (toolBar());
statusBar()->insertItem( capText, 0, 1, true );
@@ -132,7 +132,7 @@ void ImageViewer::loadImageFromURL()
kdDebug()<<"tempfile-URL is malformed\n";
downloadJob = TDEIO::copy (imageURL, saveURL); // starts the download asynchron
- connect (downloadJob, TQT_SIGNAL (result (TDEIO::Job *)), TQT_SLOT (downloadReady (TDEIO::Job *)));
+ connect (downloadJob, TQ_SIGNAL (result (TDEIO::Job *)), TQ_SLOT (downloadReady (TDEIO::Job *)));
}
void ImageViewer::downloadReady (TDEIO::Job *job)