summaryrefslogtreecommitdiffstats
path: root/tdeui/kpassivepopup.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-06 00:54:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-06 00:54:43 -0600
commitb212a1de50010bf9f8ff93123281a6956291cdf2 (patch)
tree9cb6fe3d3e794cb0bdf5c8720c296b54ad4c6063 /tdeui/kpassivepopup.cpp
parentca1f1a08ecb01139487ff2f0591f97b97164c4e4 (diff)
downloadtdelibs-b212a1de50010bf9f8ff93123281a6956291cdf2.tar.gz
tdelibs-b212a1de50010bf9f8ff93123281a6956291cdf2.zip
Rename tqsetAlignment to fix bindings
Diffstat (limited to 'tdeui/kpassivepopup.cpp')
-rw-r--r--tdeui/kpassivepopup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeui/kpassivepopup.cpp b/tdeui/kpassivepopup.cpp
index 06bf8f0a3..b348e1040 100644
--- a/tdeui/kpassivepopup.cpp
+++ b/tdeui/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;