summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 9d7d89378..800f615f8 100644
--- a/src/tools/qglobal.cpp
+++ b/src/tools/qglobal.cpp
@@ -584,7 +584,7 @@ void warning( const char *msg, ... )
void tqDebug( const TQCString &s )
{
- tqDebug(s.data());
+ tqDebug("%s", s.data());
}
void tqWarning( const TQString &msg )
@@ -619,7 +619,7 @@ void tqWarning( const char *msg, ... )
void tqWarning( const TQCString &s )
{
- tqWarning(s.data());
+ tqWarning("%s", s.data());
}
void tqFatal( const TQString &msg )
@@ -689,7 +689,7 @@ void fatal( const char *msg, ... )
void tqFatal( const TQCString &s )
{
- tqWarning(s.data());
+ tqWarning("%s", s.data());
}
/*!