summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/imagesequence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/imagesequence.cpp')
-rw-r--r--kstars/kstars/imagesequence.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/kstars/kstars/imagesequence.cpp b/kstars/kstars/imagesequence.cpp
index a05b65ad..6e98b10f 100644
--- a/kstars/kstars/imagesequence.cpp
+++ b/kstars/kstars/imagesequence.cpp
@@ -46,8 +46,8 @@ imagesequence::imagesequence(TQWidget* parent, const char* name, bool modal, WFl
if (devMenu)
{
- connect (devMenu, TQT_SIGNAL(newDevice()), this, TQT_SLOT(newCCD()));
- connect (devMenu, TQT_SIGNAL(newDevice()), this, TQT_SLOT(newFilter()));
+ connect (devMenu, TQ_SIGNAL(newDevice()), this, TQ_SLOT(newCCD()));
+ connect (devMenu, TQ_SIGNAL(newDevice()), this, TQ_SLOT(newFilter()));
}
seqTimer = new TQTimer(this);
@@ -55,12 +55,12 @@ imagesequence::imagesequence(TQWidget* parent, const char* name, bool modal, WFl
setModal(false);
// Connect signals and slots
- connect(startB, TQT_SIGNAL(clicked()), this, TQT_SLOT(startSequence()));
- connect(stopB, TQT_SIGNAL(clicked()), this, TQT_SLOT(stopSequence()));
- connect(closeB, TQT_SIGNAL(clicked()), this, TQT_SLOT(close()));
- connect(seqTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(prepareCapture()));
- connect(CCDCombo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(checkCCD(int)));
- connect(filterCombo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(updateFilterCombo(int)));
+ connect(startB, TQ_SIGNAL(clicked()), this, TQ_SLOT(startSequence()));
+ connect(stopB, TQ_SIGNAL(clicked()), this, TQ_SLOT(stopSequence()));
+ connect(closeB, TQ_SIGNAL(clicked()), this, TQ_SLOT(close()));
+ connect(seqTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(prepareCapture()));
+ connect(CCDCombo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(checkCCD(int)));
+ connect(filterCombo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(updateFilterCombo(int)));
active = false;
ISOStamp = false;
@@ -253,7 +253,7 @@ void imagesequence::startSequence()
currentImgCountOUT->setText(TQString("%1").arg(seqCurrentCount));
// Ok, now let's connect signals and slots for this device
- connect(stdDevCCD, TQT_SIGNAL(FITSReceived(TQString)), this, TQT_SLOT(newFITS(TQString)));
+ connect(stdDevCCD, TQ_SIGNAL(FITSReceived(TQString)), this, TQ_SLOT(newFITS(TQString)));
// set the progress info
imgProgress->setEnabled(true);
@@ -294,7 +294,7 @@ void imagesequence::stopSequence()
stdDevCCD->batchMode = false;
stdDevCCD->ISOMode = false;
- stdDevCCD->disconnect( TQT_SIGNAL(FITSReceived(TQString)));
+ stdDevCCD->disconnect( TQ_SIGNAL(FITSReceived(TQString)));
}
}
@@ -358,7 +358,7 @@ void imagesequence::newFITS(TQString deviceLabel)
seqTimer->stop();
if (stdDevCCD)
- stdDevCCD->disconnect( TQT_SIGNAL(FITSReceived(TQString)));
+ stdDevCCD->disconnect( TQ_SIGNAL(FITSReceived(TQString)));
resetButtons();
}
@@ -469,7 +469,7 @@ bool imagesequence::verifyFilterIntegrity()
return false;
}
- // #3 Make sure it has FILTER_SLOT std property by searching for its TQT_SLOT element
+ // #3 Make sure it has FILTER_SLOT std property by searching for its SLOT element
filterElem = filterDevice->findElem("SLOT");
if (filterElem == NULL)
{
@@ -507,7 +507,7 @@ void imagesequence::prepareCapture()
if ( stdDevFilter && ((tempProp = stdDevFilter->dp->findProp("FILTER_SLOT")) != NULL))
{
- connect (tempProp, TQT_SIGNAL(okState()), this, TQT_SLOT(captureImage()));
+ connect (tempProp, TQ_SIGNAL(okState()), this, TQ_SLOT(captureImage()));
selectFilter();
}
else
@@ -531,7 +531,7 @@ void imagesequence::captureImage()
// D. The property has been lost.
if ( stdDevFilter && ((tempProp = stdDevFilter->dp->findProp("FILTER_SLOT")) != NULL))
- tempProp->disconnect( TQT_SIGNAL (okState()));
+ tempProp->disconnect( TQ_SIGNAL (okState()));
if (!verifyCCDIntegrity())
{