summaryrefslogtreecommitdiffstats
path: root/blinken/src/fontutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'blinken/src/fontutils.cpp')
-rw-r--r--blinken/src/fontutils.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/blinken/src/fontutils.cpp b/blinken/src/fontutils.cpp
index eacbbd46..10d3bc0d 100644
--- a/blinken/src/fontutils.cpp
+++ b/blinken/src/fontutils.cpp
@@ -7,24 +7,24 @@
* (at your option) any later version. *
***************************************************************************/
-#include <qpainter.h>
+#include <tqpainter.h>
#include "fontutils.h"
-int fontUtils::fontSize(QPainter &p, const QString &s1, int w, int h)
+int fontUtils::fontSize(TQPainter &p, const TQString &s1, int w, int h)
{
int size;
- QRect aux1;
+ TQRect aux1;
bool done = false;
size = 28;
while (!done)
{
- QFont f = p.font();
+ TQFont f = p.font();
f.setPointSize(size);
p.setFont(f);
- aux1 = p.boundingRect(QRect(), Qt::AlignAuto, s1);
+ aux1 = p.boundingRect(TQRect(), Qt::AlignAuto, s1);
if (aux1.width() > w || aux1.height() > h) size = QMIN(w * size / aux1.width(), h * size / aux1.height());
else done = true;
}