summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-17 19:19:26 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-17 19:19:26 -0500
commit07b6965cbac26077a27faf4071487d9a25fb3aa0 (patch)
tree8c5910ccfcab2269f7948dbd74a83048cd99d2ac /experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp
parent1c210202b89d0161f34432bc74157a278670f4dc (diff)
downloadtde-07b6965cbac26077a27faf4071487d9a25fb3aa0.tar.gz
tde-07b6965cbac26077a27faf4071487d9a25fb3aa0.zip
Revert "Rename tqsize* to size*"
This reverts commit e33879600503bacc0b4ef090f7f79ab80bb6b0da.
Diffstat (limited to 'experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp')
-rw-r--r--experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp b/experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp
index d1047b45d..e8583ff00 100644
--- a/experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp
+++ b/experimental/tqtinterface/qt4/src/widgets/tqpushbutton.cpp
@@ -402,7 +402,7 @@ void TQPushButton::setDefault( bool enable )
/*!
\reimp
*/
-TQSize TQPushButton::sizeHint() const
+TQSize TQPushButton::tqsizeHint() const
{
constPolish();
@@ -437,7 +437,7 @@ TQSize TQPushButton::sizeHint() const
h = TQMAX(h, sz.height());
}
- return (tqstyle().sizeFromContents(TQStyle::CT_PushButton, this, TQSize(w, h)).
+ return (tqstyle().tqsizeFromContents(TQStyle::CT_PushButton, this, TQSize(w, h)).
expandedTo(TQApplication::globalStrut()));
}
@@ -712,24 +712,24 @@ void TQPushButton::popupPressed()
#endif
if ( horizontal ) {
if ( topLeft ) {
- if ( mapToGlobal( TQPoint( 0, rect().bottom() ) ).y() + popup->sizeHint().height() <= tqApp->desktop()->height() )
+ if ( mapToGlobal( TQPoint( 0, rect().bottom() ) ).y() + popup->tqsizeHint().height() <= tqApp->desktop()->height() )
popup->exec( mapToGlobal( rect().bottomLeft() ) );
else
- popup->exec( mapToGlobal( rect().topLeft() - TQPoint( 0, popup->sizeHint().height() ) ) );
+ popup->exec( mapToGlobal( rect().topLeft() - TQPoint( 0, popup->tqsizeHint().height() ) ) );
} else {
- TQSize sz( popup->sizeHint() );
+ TQSize sz( popup->tqsizeHint() );
TQPoint p = mapToGlobal( rect().topLeft() );
p.ry() -= sz.height();
popup->exec( p );
}
} else {
if ( topLeft ) {
- if ( mapToGlobal( TQPoint( rect().right(), 0 ) ).x() + popup->sizeHint().width() <= tqApp->desktop()->width() )
+ if ( mapToGlobal( TQPoint( rect().right(), 0 ) ).x() + popup->tqsizeHint().width() <= tqApp->desktop()->width() )
popup->exec( mapToGlobal( rect().topRight() ) );
else
- popup->exec( mapToGlobal( rect().topLeft() - TQPoint( popup->sizeHint().width(), 0 ) ) );
+ popup->exec( mapToGlobal( rect().topLeft() - TQPoint( popup->tqsizeHint().width(), 0 ) ) );
} else {
- TQSize sz( popup->sizeHint() );
+ TQSize sz( popup->tqsizeHint() );
TQPoint p = mapToGlobal( rect().topLeft() );
p.rx() -= sz.width();
popup->exec( p );