diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:19:21 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-03 03:26:34 +0200 |
commit | 0251b10c2e9a79e857e5729453d375d09fa8336e (patch) | |
tree | 11223ad7a12c1bdbc81b9bb698618b0386a1ce5e /kdesktop/lock | |
parent | a5b44fbe44e58478ad74d819c5f4c36926d31872 (diff) | |
download | tdebase-0251b10c2e9a79e857e5729453d375d09fa8336e.tar.gz tdebase-0251b10c2e9a79e857e5729453d375d09fa8336e.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit b492b550f35c84160958775c14ea7037c5b12181)
Diffstat (limited to 'kdesktop/lock')
-rw-r--r-- | kdesktop/lock/lockdlg.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdesktop/lock/lockdlg.cc b/kdesktop/lock/lockdlg.cc index 6c3fe857e..b40275ae2 100644 --- a/kdesktop/lock/lockdlg.cc +++ b/kdesktop/lock/lockdlg.cc @@ -268,7 +268,7 @@ void PasswordDlg::setLayoutText( const TQString &txt ) { mLayoutButton->setText( txt ); TQSize sz = mLayoutButton->fontMetrics().size( 0, txt ); - int mrg = mLayoutButton->tqstyle().pixelMetric( TQStyle::PM_ButtonMargin ) * 2; + int mrg = mLayoutButton->style().pixelMetric( TQStyle::PM_ButtonMargin ) * 2; mLayoutButton->setFixedSize( sz.width() + mrg, sz.height() + mrg ); } @@ -790,7 +790,7 @@ void PasswordDlg::slotSwitchUser() int fw = lv->frameWidth() * 2; TQSize hds( lv->header()->sizeHint() ); lv->setMinimumWidth( fw + hds.width() + - (ns > 10 ? tqstyle().pixelMetric(TQStyle::PM_ScrollBarExtent) : 0 ) ); + (ns > 10 ? style().pixelMetric(TQStyle::PM_ScrollBarExtent) : 0 ) ); lv->setFixedHeight( fw + hds.height() + itm->height() * (ns < 6 ? 6 : ns > 10 ? 10 : ns) ); lv->header()->adjustHeaderSize(); |