summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/kstarssplash.h
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/kstarssplash.h
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/kstarssplash.h')
-rw-r--r--kstars/kstars/kstarssplash.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/kstars/kstars/kstarssplash.h b/kstars/kstars/kstarssplash.h
index afe523a2..0becc4a8 100644
--- a/kstars/kstars/kstarssplash.h
+++ b/kstars/kstars/kstarssplash.h
@@ -33,11 +33,12 @@ class TQLabel;
class KStarsSplash : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
/**Constructor. Create widgets. Load KStars logo. Start load timer.
*/
- KStarsSplash( TQWidget *parent, const char* name );
+ KStarsSplash( TQWidget *tqparent, const char* name );
/**Destructor
*/
@@ -50,7 +51,7 @@ class KStarsSplash : public KDialogBase
protected:
/**Paint event to redraw the widgets. This only gets called when the timer fires.
- *It should also repaint if another window was on top of the splash screen, but
+ *It should also tqrepaint if another window was on top of the splash screen, but
*this may be difficult to implement (it may be that the program is too busy loading data
*to notice that a redraw is required).
*/
@@ -65,7 +66,7 @@ class KStarsSplash : public KDialogBase
void closeWindow();
private:
- TQLabel *textCurrentStatus, *label;
+ TQLabel *textCurrenttqStatus, *label;
TQWidget *Banner;
TQPixmap *splashImage;
};