summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/fontembedder.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:29:58 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:29:58 -0600
commite8a1cdc01d38125bea12d5494db977ae6429919a (patch)
treea4e4d6accfecc7d295edc44e9ade6f4fca90fb37 /konsole/konsole/fontembedder.cpp
parent32582677547665087f8ad4dae892dc579ec68cfc (diff)
downloadtdebase-e8a1cdc01d38125bea12d5494db977ae6429919a.tar.gz
tdebase-e8a1cdc01d38125bea12d5494db977ae6429919a.zip
Rename additional global TQt functions
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;