summaryrefslogtreecommitdiffstats
path: root/qt/SciListBox.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:35:23 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:35:23 -0600
commit5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170 (patch)
treef6be5c0cc8881dc1d2df5e4d56e59c388b52cd41 /qt/SciListBox.cpp
parent2ca85d336093fd44a5effafbc44dde7edd4e30ec (diff)
downloadtqscintilla-5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170.tar.gz
tqscintilla-5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'qt/SciListBox.cpp')
-rw-r--r--qt/SciListBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/SciListBox.cpp b/qt/SciListBox.cpp
index ef2475b..f873d7c 100644
--- a/qt/SciListBox.cpp
+++ b/qt/SciListBox.cpp
@@ -98,7 +98,7 @@ void ListBoxX::Create(Window &parent,int,Point,int,bool)
void ListBoxX::SetAverageCharWidth(int)
{
- // We rely on TQListBox::tqsizeHint() for the size of the list box rather
+ // We rely on TQListBox::sizeHint() for the size of the list box rather
// than make calculations based on the average character width and the
// number of visible rows.
}
@@ -121,7 +121,7 @@ PRectangle ListBoxX::GetDesiredRect()
if (slb)
{
- TQSize sh = slb -> tqsizeHint();
+ TQSize sh = slb -> sizeHint();
rc.right = sh.width();
rc.bottom = sh.height();