summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/kstarsdcop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/kstarsdcop.cpp')
-rw-r--r--kstars/kstars/kstarsdcop.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kstars/kstars/kstarsdcop.cpp b/kstars/kstars/kstarsdcop.cpp
index ce1e7c50..bada6d1d 100644
--- a/kstars/kstars/kstarsdcop.cpp
+++ b/kstars/kstars/kstarsdcop.cpp
@@ -106,7 +106,7 @@ void KStars::setLocalTime(int yr, int mth, int day, int hr, int min, int sec) {
void KStars::waitFor( double t ) {
kapp->dcopClient()->suspend();
- TQTimer::singleShot( int( 1000.*t ), this, TQT_SLOT( resumeDCOP() ) );
+ TQTimer::singleShot( int( 1000.*t ), this, TQ_SLOT( resumeDCOP() ) );
}
void KStars::waitForKey( const TQString k ) {
@@ -775,10 +775,10 @@ void KStars::waitForINDIAction(TQString deviceName, TQString action)
el = dev->findElem(action);
if (!el) return;
- TQObject::connect(el->pp, TQT_SIGNAL(okState()), this, TQT_SLOT(resumeDCOP(void )));
+ TQObject::connect(el->pp, TQ_SIGNAL(okState()), this, TQ_SLOT(resumeDCOP(void )));
}
else
- TQObject::connect(prop, TQT_SIGNAL(okState()), this, TQT_SLOT(resumeDCOP(void )));
+ TQObject::connect(prop, TQ_SIGNAL(okState()), this, TQ_SLOT(resumeDCOP(void )));
kapp->dcopClient()->suspend();
@@ -977,7 +977,7 @@ void KStars::setINDIFilterNum(TQString deviceName, int filter_num)
prop = dev->findProp("FILTER_SLOT");
if (!prop) return;
- el = prop->findElement("SLOT");
+ el = prop->findElement("TQ_SLOT");
if (!el) return;
if (el->write_w)