summaryrefslogtreecommitdiffstats
path: root/kdeui/kpassivepopup.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-06 00:54:43 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-02 19:04:47 +0200
commitab32d1dcfb2ee4c59ee3cfdc697adfb717ea91b9 (patch)
treef1579b1f398b3c8e19d8114e87dd2fef3b407651 /kdeui/kpassivepopup.cpp
parentc1a037c8d0250886e3e984d6171d798b5a60dc9d (diff)
downloadtdelibs-ab32d1dcfb2ee4c59ee3cfdc697adfb717ea91b9.tar.gz
tdelibs-ab32d1dcfb2ee4c59ee3cfdc697adfb717ea91b9.zip
Rename tqsetAlignment to fix bindings
(cherry picked from commit b212a1de50010bf9f8ff93123281a6956291cdf2)
Diffstat (limited to 'kdeui/kpassivepopup.cpp')
-rw-r--r--kdeui/kpassivepopup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdeui/kpassivepopup.cpp b/kdeui/kpassivepopup.cpp
index 06bf8f0a3..b348e1040 100644
--- a/kdeui/kpassivepopup.cpp
+++ b/kdeui/kpassivepopup.cpp
@@ -138,7 +138,7 @@ TQVBox * KPassivePopup::standardView( const TQString& caption,
hb->setSpacing( KDialog::spacingHint() );
ttlIcon = new TQLabel( hb, "title_icon" );
ttlIcon->setPixmap( icon );
- ttlIcon->tqsetAlignment( AlignLeft );
+ ttlIcon->setAlignment( AlignLeft );
}
if ( !caption.isEmpty() ) {
@@ -146,14 +146,14 @@ TQVBox * KPassivePopup::standardView( const TQString& caption,
TQFont fnt = ttl->font();
fnt.setBold( true );
ttl->setFont( fnt );
- ttl->tqsetAlignment( Qt::AlignHCenter );
+ ttl->setAlignment( Qt::AlignHCenter );
if ( hb )
hb->setStretchFactor( ttl, 10 ); // enforce centering
}
if ( !text.isEmpty() ) {
msg = new TQLabel( text, vb, "msg_label" );
- msg->tqsetAlignment( AlignLeft );
+ msg->setAlignment( AlignLeft );
}
return vb;