diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:39:17 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:39:17 -0600 |
commit | d9f7baa97dec2be4dd11726395eb704c837ce788 (patch) | |
tree | e94d72ba287986b45ad30d96dfab823dac60791d /kradio3/plugins/gui-quickbar/buttonflowlayout.cpp | |
parent | 8d4453deaa5f97e1bbe76ea45fdcac6121da8c9d (diff) | |
download | tderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.tar.gz tderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kradio3/plugins/gui-quickbar/buttonflowlayout.cpp')
-rw-r--r-- | kradio3/plugins/gui-quickbar/buttonflowlayout.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp b/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp index 528f9c5..c13c0fa 100644 --- a/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp +++ b/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp @@ -219,7 +219,7 @@ int ButtonFlowLayout::doLayout( const TQRect &r, bool testonly ) TQSize ButtonFlowLayout::minimumSize() const { - return minimumSize(tqgeometry().size()); + return minimumSize(geometry().size()); } @@ -249,7 +249,7 @@ int ButtonFlowLayout::count() const { \reimp */ TQLayoutItem* ButtonFlowLayout::itemAt(int index) const { - return index >= 0 && index < list.count() ? (const_cast<TQPtrList<TQLayoutItem>&>(list).tqat(index)) : 0; + return index >= 0 && index < list.count() ? (const_cast<TQPtrList<TQLayoutItem>&>(list).at(index)) : 0; } /*! @@ -258,8 +258,8 @@ TQLayoutItem* ButtonFlowLayout::itemAt(int index) const { TQLayoutItem* ButtonFlowLayout::takeAt(int index) { if (index < 0 || index >= list.count()) return 0; - TQLayoutItem *item = list.tqat(index); - list.remove(list.tqat(index)); + TQLayoutItem *item = list.at(index); + list.remove(list.at(index)); delete item; invalidate(); |