summaryrefslogtreecommitdiffstats
path: root/tools/msg2qm
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2018-09-25 20:57:27 +0900
committerMichele Calgaro <[email protected]>2018-09-25 20:57:27 +0900
commit230ed5e400ea4276d927570a7781cfcb5c7a534a (patch)
tree56bb72cae9206a3a6734a380f48b85051d054614 /tools/msg2qm
parent2df70f03d493f5226821dd2e1da3759e3abceb02 (diff)
downloadqt3-230ed5e400ea4276d927570a7781cfcb5c7a534a.tar.gz
qt3-230ed5e400ea4276d927570a7781cfcb5c7a534a.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. --------------------------- Cherry picked and adapted from commit ff63338d in tqt3 from Slávek Banko <[email protected]> Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tools/msg2qm')
-rw-r--r--tools/msg2qm/msg2qm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/msg2qm/msg2qm.cpp b/tools/msg2qm/msg2qm.cpp
index 6ac8c36..d90d7b6 100644
--- a/tools/msg2qm/msg2qm.cpp
+++ b/tools/msg2qm/msg2qm.cpp
@@ -192,10 +192,10 @@ void translate( const QString& filename, const QString& qmfile )
QString charset = msgstr.mid( cpos, i-cpos );
codec = QTextCodec::codecForName( charset.ascii() );
if ( codec ) {
- debug( "PO file character set: %s. Codec: %s",
+ qDebug( "PO file character set: %s. Codec: %s",
charset.ascii(), codec->name() );
} else {
- debug( "No codec for %s", charset.ascii() );
+ qDebug( "No codec for %s", charset.ascii() );
}
}
break;