diff options
Diffstat (limited to 'pytquic3')
-rw-r--r-- | pytquic3/embed.cpp | 2 | ||||
-rw-r--r-- | pytquic3/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pytquic3/embed.cpp b/pytquic3/embed.cpp index 9bf0071..afb28d0 100644 --- a/pytquic3/embed.cpp +++ b/pytquic3/embed.cpp @@ -149,7 +149,7 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima for ( it = images.begin(); it != images.end(); ++it ) { TQImage img; if ( !img.load( *it ) ) { - fprintf( stderr, "pytquic: cannot load image file %s\n", (*it).utf8() ); + fprintf( stderr, "pytquic: cannot load image file %s\n", (*it).local8Bit().data() ); continue; } EmbedImage *e = new EmbedImage; 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; } |