summaryrefslogtreecommitdiffstats
path: root/src/tools/qglobal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/qglobal.cpp')
-rw-r--r--src/tools/qglobal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/qglobal.cpp b/src/tools/qglobal.cpp
index e1ce5d5b9..ed8805291 100644
--- a/src/tools/qglobal.cpp
+++ b/src/tools/qglobal.cpp
@@ -530,7 +530,7 @@ void tqDebug( const char *msg, ... )
void tqDebug( const TQCString &s )
{
- tqDebug(s.data());
+ tqDebug("%s", s.data());
}
void tqWarning( const TQString &msg )
@@ -565,7 +565,7 @@ void tqWarning( const char *msg, ... )
void tqWarning( const TQCString &s )
{
- tqWarning(s.data());
+ tqWarning("%s", s.data());
}
void tqFatal( const TQString &msg )
@@ -600,7 +600,7 @@ void tqFatal( const char *msg, ... )
void tqFatal( const TQCString &s )
{
- tqWarning(s.data());
+ tqWarning("%s", s.data());
}
/*!