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 /twin/tabbox.cpp | |
parent | 1c37295608c6d783b2b710f423befbcfb0068bbd (diff) | |
download | tdebase-90f1f50f00651f7bc9f8acf50556968b4288400d.tar.gz tdebase-90f1f50f00651f7bc9f8acf50556968b4288400d.zip |
Fix remnant QMIN/QMAX to TQMIN/TQMAX.
Diffstat (limited to 'twin/tabbox.cpp')
-rw-r--r-- | twin/tabbox.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/twin/tabbox.cpp b/twin/tabbox.cpp index 3d75edef1..505af7abc 100644 --- a/twin/tabbox.cpp +++ b/twin/tabbox.cpp @@ -183,7 +183,7 @@ void TabBox::reset() // calculate height of 1 line // fontheight + 1 pixel above + 1 pixel below, or 32x32 icon + 2 pixel above + below - lineHeight = QMAX(fontMetrics().height() + 2, 32 + 4); + lineHeight = TQMAX(fontMetrics().height() + 2, 32 + 4); if ( mode() == WindowsMode ) { @@ -218,7 +218,7 @@ void TabBox::reset() { showMiniIcon = true; // fontheight + 1 pixel above + 1 pixel below, or 16x16 icon + 1 pixel above + below - lineHeight = QMAX(fontMetrics().height() + 2, 16 + 2); + lineHeight = TQMAX(fontMetrics().height() + 2, 16 + 2); h = clients.count() * lineHeight; @@ -496,11 +496,11 @@ void TabBox::drawContents( TQPainter * ) int wmax = 0; for ( int i = 1; i <= workspace()->numberOfDesktops(); i++ ) { - wmax = QMAX(wmax, fontMetrics().width(workspace()->desktopName(i))); + wmax = TQMAX(wmax, fontMetrics().width(workspace()->desktopName(i))); // calculate max width of desktop-number text TQString num = TQString::number(i); - iconWidth = QMAX(iconWidth - 4, fm.boundingRect(num).width()) + 4; + iconWidth = TQMAX(iconWidth - 4, fm.boundingRect(num).width()) + 4; } // In DesktopMode, start at the current desktop |