summaryrefslogtreecommitdiffstats
path: root/qt/qextscintillalexer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt/qextscintillalexer.cpp')
-rw-r--r--qt/qextscintillalexer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/qt/qextscintillalexer.cpp b/qt/qextscintillalexer.cpp
index 327206f..20a1c22 100644
--- a/qt/qextscintillalexer.cpp
+++ b/qt/qextscintillalexer.cpp
@@ -339,12 +339,12 @@ bool QextScintillaLexer::writeSettings(TQSettings &qs,const char *prefix) const
f = font(i);
fdesc += f.family();
- fdesc += fmt.tqarg(f.pointSize());
+ fdesc += fmt.arg(f.pointSize());
// The casts are for Borland.
- fdesc += fmt.tqarg((int)f.bold());
- fdesc += fmt.tqarg((int)f.italic());
- fdesc += fmt.tqarg((int)f.underline());
+ fdesc += fmt.arg((int)f.bold());
+ fdesc += fmt.arg((int)f.italic());
+ fdesc += fmt.arg((int)f.underline());
if (!qs.writeEntry(key + "font",fdesc,','))
rc = FALSE;