diff options
Diffstat (limited to 'src/splashscreen.cpp')
-rw-r--r-- | src/splashscreen.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/splashscreen.cpp b/src/splashscreen.cpp index 205656bd..446705b8 100644 --- a/src/splashscreen.cpp +++ b/src/splashscreen.cpp @@ -10,7 +10,7 @@ #include <tdelocale.h> #include <tdeglobalsettings.h> -KDevSplashScreen::KDevSplashScreen(const TQPixmap& pixmap, WFlags f) : TQSplashScreen(pixmap, f) +TDevSplashScreen::TDevSplashScreen(const TQPixmap& pixmap, WFlags f) : TQSplashScreen(pixmap, f) { TQTimer *timer = new TQTimer( this ); TQObject::connect(timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(animate())); @@ -21,19 +21,19 @@ KDevSplashScreen::KDevSplashScreen(const TQPixmap& pixmap, WFlags f) : TQSplashS } -KDevSplashScreen::~KDevSplashScreen() +TDevSplashScreen::~TDevSplashScreen() { } -void KDevSplashScreen::animate() +void TDevSplashScreen::animate() { state = ((state + 1) % (2*progress_bar_size-1)); repaint(); } -void KDevSplashScreen::message( const TQString &str, int flags, const TQColor &color) +void TDevSplashScreen::message( const TQString &str, int flags, const TQColor &color) { TQSplashScreen::message(str,flags,color); animate(); @@ -41,7 +41,7 @@ void KDevSplashScreen::message( const TQString &str, int flags, const TQColor &c } -void KDevSplashScreen::drawContents (TQPainter* painter) +void TDevSplashScreen::drawContents (TQPainter* painter) { int position; TQColor base_color (201,229,165); // Base green color |