summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/fontembedder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konsole/konsole/fontembedder.cpp')
-rw-r--r--konsole/konsole/fontembedder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/konsole/konsole/fontembedder.cpp b/konsole/konsole/fontembedder.cpp
index d0c17e084..8b6da6d70 100644
--- a/konsole/konsole/fontembedder.cpp
+++ b/konsole/konsole/fontembedder.cpp
@@ -61,13 +61,13 @@ int main(int argc, char **argv)
{
if (argc < 1)
{
- qWarning("usage: fontembedder font.src > font.h");
+ tqWarning("usage: fontembedder font.src > font.h");
exit(1);
}
TQFile inFile(argv[1]);
if (!inFile.open(IO_ReadOnly))
{
- qFatal("Can not open %s", argv[1]);
+ tqFatal("Can not open %s", argv[1]);
}
TQTextStream input(&inFile);
@@ -88,7 +88,7 @@ int main(int argc, char **argv)
//Must be a glyph ID.
int glyph = line.toInt(0, 16);
if ((glyph < 0x2500) || (glyph > 0x257f))
- qFatal("Invalid glyph number");
+ tqFatal("Invalid glyph number");
glyph = glyph - 0x2500;