diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-09-24 17:03:23 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-09-24 17:03:23 +0200 |
commit | ff63338d189a49a16b29a503ba23727cfa7e2e66 (patch) | |
tree | c6e82e67044286fe4471e97c8f079a2d205f979a /tools/msg2tqm/msg2tqm.cpp | |
parent | 02964eb384e1b5a73a198d04262497607d81e38f (diff) | |
download | tqt3-ff63338d189a49a16b29a503ba23727cfa7e2e66.tar.gz tqt3-ff63338d189a49a16b29a503ba23727cfa7e2e66.zip |
Always build with a clean namespace
QT_CLEAN_NAMESPACE constant is no more needed
This may theoretically affect applications created for Qt1 and Qt2,
but such applications require further modifications as well.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tools/msg2tqm/msg2tqm.cpp')
-rw-r--r-- | tools/msg2tqm/msg2tqm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/msg2tqm/msg2tqm.cpp b/tools/msg2tqm/msg2tqm.cpp index 5bacda177..1f9688a6f 100644 --- a/tools/msg2tqm/msg2tqm.cpp +++ b/tools/msg2tqm/msg2tqm.cpp @@ -192,10 +192,10 @@ void translate( const TQString& filename, const TQString& qmfile ) TQString charset = msgstr.mid( cpos, i-cpos ); codec = TQTextCodec::codecForName( charset.ascii() ); if ( codec ) { - debug( "PO file character set: %s. Codec: %s", + tqDebug( "PO file character set: %s. Codec: %s", charset.ascii(), codec->name() ); } else { - debug( "No codec for %s", charset.ascii() ); + tqDebug( "No codec for %s", charset.ascii() ); } } break; |