summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/kstarssplash.h
diff options
context:
space:
mode:
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;
};