diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:59:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:59:40 -0600 |
commit | 59a076e9336f1eebda8650437e6bc61077be1516 (patch) | |
tree | a2e4658f80b77270d84b50bd116f84eaea7efab0 /amor/amorbubble.cpp | |
parent | 3ee504ecba6caf3c2609a8648fe3659f2b541544 (diff) | |
download | tdetoys-59a076e9336f1eebda8650437e6bc61077be1516.tar.gz tdetoys-59a076e9336f1eebda8650437e6bc61077be1516.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'amor/amorbubble.cpp')
-rw-r--r-- | amor/amorbubble.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/amor/amorbubble.cpp b/amor/amorbubble.cpp index 5060f97..0af3c90 100644 --- a/amor/amorbubble.cpp +++ b/amor/amorbubble.cpp @@ -83,12 +83,12 @@ AmorBubble::~AmorBubble() //--------------------------------------------------------------------------- // -// Set the message to display in the bubble. Causes the tqgeometry of the +// Set the message to display in the bubble. Causes the geometry of the // widget to be recalculated. // void AmorBubble::setMessage(const TQString& message) { - mMessage = TQString( "<html>%1</html>" ).tqarg( message ); + mMessage = TQString( "<html>%1</html>" ).arg( message ); // hacks because heightForWidth() doesn't work. setGeometry( -1000, 0, 300, 1000 ); show(); @@ -108,7 +108,7 @@ void AmorBubble::calcGeometry() mBound.setHeight( mBrowser->contentsHeight() ); mBound.moveBy(ARROW_WIDTH+BORDER_SIZE, BORDER_SIZE); - // initialise the default tqgeometry of the bubble + // initialise the default geometry of the bubble int w = mBound.width() + BORDER_SIZE * 2 + ARROW_WIDTH; int h = mBound.height() + BORDER_SIZE * 2; int xpos = mOriginX + BUBBLE_OFFSET; @@ -141,7 +141,7 @@ void AmorBubble::calcGeometry() setGeometry(xpos, ypos, w, h); mBrowser->setGeometry( mBound ); - // create and apply the tqshape mask + // create and apply the shape mask mMask.resize(w, h); mMask.fill(color0); TQPainter maskPainter(&mMask); |