diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:31:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:31:01 -0600 |
commit | 252fce5a2a5384702fbcc1c9987284d7bd2e6943 (patch) | |
tree | d5768ff1e9065f29bec60c94d31880b38b4e82f2 /kmymoney2/kstartuplogo.cpp | |
parent | 69ef6c4beaa37474a2170d0bfe842de647f53102 (diff) | |
download | kmymoney-252fce5a2a5384702fbcc1c9987284d7bd2e6943.tar.gz kmymoney-252fce5a2a5384702fbcc1c9987284d7bd2e6943.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kmymoney2/kstartuplogo.cpp')
-rw-r--r-- | kmymoney2/kstartuplogo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/kstartuplogo.cpp b/kmymoney2/kstartuplogo.cpp index a0d8ac6..b22f0e4 100644 --- a/kmymoney2/kstartuplogo.cpp +++ b/kmymoney2/kstartuplogo.cpp @@ -57,13 +57,13 @@ KStartupSplash::~KStartupSplash() delete d; } -void KStartupSplash::message( const TQString &message, int tqalignment, const TQColor &color) +void KStartupSplash::message( const TQString &message, int alignment, const TQColor &color) { d->message = message; - d->align = tqalignment; + d->align = alignment; d->color = color; // the next line causes the base class signal management to happen - // and also forces a tqrepaint + // and also forces a repaint KSplashScreen::clear(); } @@ -100,7 +100,7 @@ KStartupLogo::KStartupLogo() : splash->message(i18n("Loading..."), AlignLeft, white); splash->show(); - splash->tqrepaint(); + splash->repaint(); m_splash = splash; } } |