diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-11-28 13:30:19 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-11-28 13:30:19 -0600 |
commit | 90f1f50f00651f7bc9f8acf50556968b4288400d (patch) | |
tree | 8d5df88cb28a00efd2c8b9f3c6b1ca7e6063ada9 /klipper | |
parent | 1c37295608c6d783b2b710f423befbcfb0068bbd (diff) | |
download | tdebase-90f1f50f00651f7bc9f8acf50556968b4288400d.tar.gz tdebase-90f1f50f00651f7bc9f8acf50556968b4288400d.zip |
Fix remnant QMIN/QMAX to TQMIN/TQMAX.
Diffstat (limited to 'klipper')
-rw-r--r-- | klipper/popupproxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klipper/popupproxy.cpp b/klipper/popupproxy.cpp index 4811e8f98..1c427834a 100644 --- a/klipper/popupproxy.cpp +++ b/klipper/popupproxy.cpp @@ -135,7 +135,7 @@ int PopupProxy::insertFromSpill( int index ) { int count = 0; int remainingHeight = m_menu_height - proxy_for_menu->sizeHint().height(); // Force at least one item to be inserted. - remainingHeight = QMAX( remainingHeight, 0 ); + remainingHeight = TQMAX( remainingHeight, 0 ); for ( const HistoryItem* item = spillPointer.current(); item && remainingHeight >= 0; nextItemNumber++, item = ++spillPointer ) |