From 80dc1e5317f9bf799df2493381484b1b65e77b5f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 5 Sep 2019 11:02:47 +0900 Subject: Added tqDebug/tqWarning/tqFatal functions that takes a TQCString argument. This fixes FTBFS of examples caused by previous ambiguous call and solves bug 3021. Signed-off-by: Michele Calgaro --- src/tools/ntqglobal.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/tools/ntqglobal.h') diff --git a/src/tools/ntqglobal.h b/src/tools/ntqglobal.h index ea6528ff4..413287dfe 100644 --- a/src/tools/ntqglobal.h +++ b/src/tools/ntqglobal.h @@ -741,6 +741,7 @@ typedef TQ_UINT64 TQ_ULLONG; // unsigned long long // Data stream functions is provided by many classes (defined in ntqdatastream.h) // +class TQCString; class TQDataStream; class TQString; @@ -958,6 +959,7 @@ Q_EXPORT int qWinVersion(); Q_EXPORT void tqDebug( const TQString& ); // print debug message +Q_EXPORT void tqDebug( const TQCString& ); // print debug message Q_EXPORT void tqDebug( const char *, ... ) // print debug message #if defined(Q_CC_GNU) && !defined(__INSURE__) __attribute__ ((format (printf, 1, 2))) @@ -965,13 +967,15 @@ Q_EXPORT void tqDebug( const char *, ... ) // print debug message ; Q_EXPORT void tqWarning( const TQString& ); // print warning message +Q_EXPORT void tqWarning( const TQCString& ); // print warning message Q_EXPORT void tqWarning( const char *, ... ) // print warning message #if defined(Q_CC_GNU) && !defined(__INSURE__) __attribute__ ((format (printf, 1, 2))) #endif ; -Q_EXPORT void tqFatal( const TQString& ); // print fatal message and exit +Q_EXPORT void tqFatal( const TQString& ); // print fatal message and exit +Q_EXPORT void tqFatal( const TQCString& ); // print fatal message and exit Q_EXPORT void tqFatal( const char *, ... ) // print fatal message and exit #if defined(Q_CC_GNU) __attribute__ ((format (printf, 1, 2))) -- cgit v1.2.1