diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:06:44 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-27 04:09:43 +0200 |
commit | 73da9974d508b1dfde6324384911fd83b49c2cc8 (patch) | |
tree | acb8519ffacf1d1e6c6cb3d8d720b0e353cb85a9 /src/libgui/likeback.cpp | |
parent | 07dae48f6a81b834e9f1544601a21051873ed0e2 (diff) | |
download | piklab-73da9974d508b1dfde6324384911fd83b49c2cc8.tar.gz piklab-73da9974d508b1dfde6324384911fd83b49c2cc8.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit ba5125fe4ce313f45544f505e74ef949d1185365)
Diffstat (limited to 'src/libgui/likeback.cpp')
-rw-r--r-- | src/libgui/likeback.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libgui/likeback.cpp b/src/libgui/likeback.cpp index df9ad0e..c76ac0a 100644 --- a/src/libgui/likeback.cpp +++ b/src/libgui/likeback.cpp @@ -55,7 +55,7 @@ LikeBack::LikeBack(Button buttons) : TQWidget( 0, "LikeBack", TQt::WX11BypassWM | TQt::WStyle_NoBorder | TQt::WNoAutoErase | TQt::WStyle_StaysOnTop | TQt::WStyle_NoBorder | TQt::TQt::WGroupLeader) , m_buttons(buttons) { - TQHBoxLayout *tqlayout = new TQHBoxLayout(this); + TQHBoxLayout *layout = new TQHBoxLayout(this); TQIconSet likeIconSet = kapp->iconLoader()->loadIconSet("likeback_like", KIcon::Small); TQIconSet dislikeIconSet = kapp->iconLoader()->loadIconSet("likeback_dislike", KIcon::Small); @@ -67,21 +67,21 @@ LikeBack::LikeBack(Button buttons) m_likeButton->setTextLabel(i18n("I Like...")); m_likeButton->setAutoRaise(true); connect( m_likeButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(iLike()) ); - tqlayout->add(m_likeButton); + layout->add(m_likeButton); TQToolButton *m_dislikeButton = new TQToolButton(this, "idonotlike"); m_dislikeButton->setIconSet(dislikeIconSet); m_dislikeButton->setTextLabel(i18n("I Do not Like...")); m_dislikeButton->setAutoRaise(true); connect( m_dislikeButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(iDoNotLike()) ); - tqlayout->add(m_dislikeButton); + layout->add(m_dislikeButton); TQToolButton *m_bugButton = new TQToolButton(this, "ifoundabug"); m_bugButton->setIconSet(bugIconSet); m_bugButton->setTextLabel(i18n("I Found a Bug...")); m_bugButton->setAutoRaise(true); connect( m_bugButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(iFoundABug()) ); - tqlayout->add(m_bugButton); + layout->add(m_bugButton); m_configureButton = new TQToolButton(this, "configure"); TQIconSet helpIconSet = kapp->iconLoader()->loadIconSet("help", KIcon::Small); @@ -89,7 +89,7 @@ LikeBack::LikeBack(Button buttons) m_configureButton->setTextLabel(i18n("Configure...")); m_configureButton->setAutoRaise(true); connect( m_likeButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(configure()) ); - tqlayout->add(m_configureButton); + layout->add(m_configureButton); TQPopupMenu *configureMenu = new TQPopupMenu(this); configureMenu->insertItem(helpIconSet, i18n("What's &This?"), this , TQT_SLOT(showWhatsThisMessage()) ); |