summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/kstartuplogo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/kstartuplogo.cpp')
-rw-r--r--bibletime/frontend/kstartuplogo.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/bibletime/frontend/kstartuplogo.cpp b/bibletime/frontend/kstartuplogo.cpp
index 5bc7089..4337d1c 100644
--- a/bibletime/frontend/kstartuplogo.cpp
+++ b/bibletime/frontend/kstartuplogo.cpp
@@ -12,7 +12,7 @@
//Own includes
#include "kstartuplogo.h"
-//Qt includes
+//TQt includes
#include <tqapplication.h>
#include <tqlabel.h>
#include <tqlayout.h>
@@ -67,7 +67,7 @@ KStartupLogo::KStartupLogo()
//Please not change the margin
textLabel = new TQLabel(this);
- textLabel->setGeometry(0,pm.height(),pm.width(),textLabel->sizeHint().height()+10);
+ textLabel->setGeometry(0,pm.height(),pm.width(),textLabel->tqsizeHint().height()+10);
textLabel->setBackgroundColor( TQColor("#0d6de9") );
textLabel->setFrameStyle(TQFrame::Panel | TQFrame::Plain);
textLabel->setLineWidth(1);
@@ -78,10 +78,10 @@ KStartupLogo::KStartupLogo()
textLabel->setFont( f );
TQPalette p = palette();
- p.setColor( TQPalette::Inactive, TQColorGroup::Text, Qt::white );
- p.setColor( TQPalette::Inactive, TQColorGroup::Foreground, Qt::white );
- p.setColor( TQPalette::Normal, TQColorGroup::Text, Qt::white );
- p.setColor( TQPalette::Normal, TQColorGroup::Foreground, Qt::white );
+ p.setColor( TQPalette::Inactive, TQColorGroup::Text, TQt::white );
+ p.setColor( TQPalette::Inactive, TQColorGroup::Foreground, TQt::white );
+ p.setColor( TQPalette::Normal, TQColorGroup::Text, TQt::white );
+ p.setColor( TQPalette::Normal, TQColorGroup::Foreground, TQt::white );
setPalette( p );
setGeometry (
@@ -94,7 +94,7 @@ KStartupLogo::KStartupLogo()
void KStartupLogo::setText(const TQString text) {
//Please not make the text bold & let the first character be blank
- textLabel->setText( TQString::fromLatin1(" %1").arg(text) );
+ textLabel->setText( TQString::tqfromLatin1(" %1").tqarg(text) );
KApplication::kApplication()->processEvents();
}