diff options
author | François Andriot <[email protected]> | 2023-04-10 13:50:22 +0200 |
---|---|---|
committer | François Andriot <[email protected]> | 2023-04-10 18:17:16 +0200 |
commit | f4a39d2fde3ef72e32b296fdd783b31d4abfcb76 (patch) | |
tree | 2c22e977965936cac0ef38ebdcb36e1087f5f535 /pytquic3/embed.cpp | |
parent | 4feca443fb45a87fa971fe7f24c9dd3128643c19 (diff) | |
download | pytqt-f4a39d2fde3ef72e32b296fdd783b31d4abfcb76.tar.gz pytqt-f4a39d2fde3ef72e32b296fdd783b31d4abfcb76.zip |
This happens en RHEL7 (gcc 4.8.5) but not on later distributions.r14.1.0
Signed-off-by: François Andriot <[email protected]>
Diffstat (limited to 'pytquic3/embed.cpp')
-rw-r--r-- | pytquic3/embed.cpp | 2 |
1 files changed, 1 insertions, 1 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; |