summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/opssolarsystem.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:44:41 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:44:41 +0000
commita374efce3a207b39514be3c52264091400ce297e (patch)
tree77bdf654b55826d4f59b53a5621310206bcaead1 /kstars/kstars/opssolarsystem.cpp
parentf81a494f3957d5cf38c787973415597941934727 (diff)
downloadtdeedu-a374efce3a207b39514be3c52264091400ce297e.tar.gz
tdeedu-a374efce3a207b39514be3c52264091400ce297e.zip
TQt4 port kdeedu
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1236073 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kstars/kstars/opssolarsystem.cpp')
-rw-r--r--kstars/kstars/opssolarsystem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kstars/kstars/opssolarsystem.cpp b/kstars/kstars/opssolarsystem.cpp
index 41ee58c0..4ee0a4da 100644
--- a/kstars/kstars/opssolarsystem.cpp
+++ b/kstars/kstars/opssolarsystem.cpp
@@ -21,10 +21,10 @@
#include "kstars.h"
#include "magnitudespinbox.h"
-OpsSolarSystem::OpsSolarSystem( TQWidget *parent, const char *name, WFlags fl )
- : OpsSolarSystemUI( parent, name, fl )
+OpsSolarSystem::OpsSolarSystem( TQWidget *tqparent, const char *name, WFlags fl )
+ : OpsSolarSystemUI( tqparent, name, fl )
{
- ksw = (KStars *)parent;
+ ksw = (KStars *)tqparent;
connect( kcfg_ShowAsteroids, TQT_SIGNAL( toggled(bool) ), TQT_SLOT( slotAsteroidWidgets(bool) ) );
connect( kcfg_ShowComets, TQT_SIGNAL( toggled(bool) ), TQT_SLOT( slotCometWidgets(bool) ) );
@@ -58,7 +58,7 @@ void OpsSolarSystem::slotCometWidgets( bool on ) {
void OpsSolarSystem::slotSelectPlanets() {
bool b=true;
- if ( sender()->name() == TQString( "showNonePlanets" ) ) b = false;
+ if ( TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender()))->name() == TQString( "showNonePlanets" ) ) b = false;
kcfg_ShowSun->setChecked( b );
kcfg_ShowMoon->setChecked( b );