diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:16:52 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:16:52 -0600 |
commit | c03d5480ab0242a8e6b03b466d90d32d39303e71 (patch) | |
tree | 49196ad7975cefd5de40614cc3b92f88092b412b /qt/SciListBox.cpp | |
parent | 6ade7e598a18691f3f92471c4441d856b3ac54dc (diff) | |
download | tqscintilla-c03d5480ab0242a8e6b03b466d90d32d39303e71.tar.gz tqscintilla-c03d5480ab0242a8e6b03b466d90d32d39303e71.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'qt/SciListBox.cpp')
-rw-r--r-- | qt/SciListBox.cpp | 4 |
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(); |