summaryrefslogtreecommitdiffstats
path: root/pytquic3/main.cpp
diff options
context:
space:
mode:
authorFrançois Andriot <francois.andriot@free.fr>2023-04-10 13:50:22 +0200
committerFrançois Andriot <francois.andriot@free.fr>2023-04-10 18:17:16 +0200
commitf4a39d2fde3ef72e32b296fdd783b31d4abfcb76 (patch)
tree2c22e977965936cac0ef38ebdcb36e1087f5f535 /pytquic3/main.cpp
parent4feca443fb45a87fa971fe7f24c9dd3128643c19 (diff)
downloadpytqt-965fb5f63749678e16ddd608535a9ec93263ede0.tar.gz
pytqt-965fb5f63749678e16ddd608535a9ec93263ede0.zip
This happens en RHEL7 (gcc 4.8.5) but not on later distributions.r14.1.0
Signed-off-by: François Andriot <francois.andriot@free.fr>
Diffstat (limited to 'pytquic3/main.cpp')
-rw-r--r--pytquic3/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pytquic3/main.cpp b/pytquic3/main.cpp
index 0158545..24fbbf3 100644
--- a/pytquic3/main.cpp
+++ b/pytquic3/main.cpp
@@ -193,7 +193,7 @@ int main( int argc, char * argv[] )
TQDomElement e = doc.firstChild().toElement();
if ( e.hasAttribute("version") && e.attribute("version").toDouble() > 3.3 ) {
tqWarning( TQString("pytquic: File generated with too recent version of TQt Designer (%s vs. %s)"),
- e.attribute("version").utf8(), TQT_VERSION_STR );
+ e.attribute("version").local8Bit().data(), TQT_VERSION_STR );
return 1;
}