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.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kstars/kstars/kstarsdcop.cpp b/kstars/kstars/kstarsdcop.cpp
index 8649ccba..f41472d0 100644
--- a/kstars/kstars/kstarsdcop.cpp
+++ b/kstars/kstars/kstarsdcop.cpp
@@ -376,12 +376,12 @@ void KStars::loadColorScheme( const TQString _name ) {
if ( Options::darkAppColors() == false && filename == "night.colors" ) {
Options::setDarkAppColors( true );
OriginalPalette = TQApplication::palette();
- TQApplication::tqsetPalette( DarkPalette, true );
+ TQApplication::setPalette( DarkPalette, true );
}
if ( Options::darkAppColors() && filename != "night.colors" ) {
Options::setDarkAppColors( false );
- TQApplication::tqsetPalette( OriginalPalette, true );
+ TQApplication::setPalette( OriginalPalette, true );
}
map()->forceUpdate();
@@ -421,7 +421,7 @@ void KStars::exportImage( const TQString url, int w, int h ) {
else { kdWarning() << i18n( "Could not parse image format of %1; assuming PNG." ).tqarg( fname ) << endl; }
map()->exportSkyImage( TQT_TQPAINTDEVICE(&skyimage) );
- kapp->tqprocessEvents(10000);
+ kapp->processEvents(10000);
//skyImage is the size of the sky map. The requested image size is w x h.
//If w x h is smaller than the skymap, then we simply crop the image.
@@ -523,7 +523,7 @@ void KStars::startINDI (TQString deviceName, bool useLocal)
if (indidriver->isDeviceRunning(deviceName))
{
indidriver->localListView->setSelected(driverItem, true);
- indidriver->processDevicetqStatus(1);
+ indidriver->processDeviceStatus(1);
}
// Set custome label for device
@@ -538,7 +538,7 @@ void KStars::startINDI (TQString deviceName, bool useLocal)
indidriver->serverR->setChecked(true);
// Run it
- indidriver->processDevicetqStatus(0);
+ indidriver->processDeviceStatus(0);
}
@@ -558,7 +558,7 @@ void KStars::shutdownINDI (TQString deviceName)
return;
}
- indidriver->processDevicetqStatus(1);
+ indidriver->processDeviceStatus(1);
}