diff options
Diffstat (limited to 'tdeui/kcombobox.cpp')
-rw-r--r-- | tdeui/kcombobox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/kcombobox.cpp b/tdeui/kcombobox.cpp index cfef5fd5b..d6d3d0f46 100644 --- a/tdeui/kcombobox.cpp +++ b/tdeui/kcombobox.cpp @@ -500,7 +500,7 @@ void KHistoryCombo::addToHistory( const TQString& item ) const int last = count() - 1; // last valid index const int mc = maxCount(); - const int stopAt = QMAX(mc, 0); + const int stopAt = TQMAX(mc, 0); for (int rmIndex = last; rmIndex >= stopAt; --rmIndex) { // remove the last item, as long as we are longer than maxCount() |