diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-20 21:47:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-20 21:47:53 +0900 |
commit | aa3c544e9586ce37e688f9e308242cf0f6d0138a (patch) | |
tree | 2db4deaa7f433f1062bad1433fe4e42a71755152 | |
parent | 6e6c0f097e38a40d0c9e5691027785edee656fdd (diff) | |
download | tdelibs-aa3c544e9586ce37e688f9e308242cf0f6d0138a.tar.gz tdelibs-aa3c544e9586ce37e688f9e308242cf0f6d0138a.zip |
Removed obsolete Qt2's TQVector class and replaced
with TQt3's TQPtrVector.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | tdehtml/rendering/render_text.cpp | 2 | ||||
-rw-r--r-- | tdehtml/rendering/render_text.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tdehtml/rendering/render_text.cpp b/tdehtml/rendering/render_text.cpp index cd9fc554f..3a349844b 100644 --- a/tdehtml/rendering/render_text.cpp +++ b/tdehtml/rendering/render_text.cpp @@ -642,7 +642,7 @@ int InlineTextBoxArray::compareItems( Item d1, Item d2 ) return static_cast<InlineTextBox*>(d1)->m_y - static_cast<InlineTextBox*>(d2)->m_y; } -// remove this once TQVector::bsearch is fixed +// remove this once TQPtrVector::bsearch is fixed int InlineTextBoxArray::findFirstMatching(Item d) const { int len = count(); diff --git a/tdehtml/rendering/render_text.h b/tdehtml/rendering/render_text.h index a05d65daa..073c328ed 100644 --- a/tdehtml/rendering/render_text.h +++ b/tdehtml/rendering/render_text.h @@ -144,7 +144,7 @@ public: bool m_reversed : 1; unsigned m_toAdd : 14; // for justified text private: - // this is just for TQVector::bsearch. Don't use it otherwise + // this is just for TQPtrVector::bsearch. Don't use it otherwise InlineTextBox(int _x, int _y) :InlineBox(0) { |