This happens en RHEL7 (gcc 4.8.5) but not on later distributions.

Signed-off-by: François Andriot <francois.andriot@free.fr>
pull/17/head r14.1.0
François Andriot 1 year ago
parent 4feca443fb
commit f4a39d2fde

@ -129,13 +129,13 @@ int main( int argc, char **argv )
if ( !codec.isEmpty() )
tor.setCodec( codec );
if ( verbose )
tqWarning( "Updating '%s'...", (*tf).utf8() );
tqWarning( "Updating '%s'...", (*tf).local8Bit().data() );
merge( &tor, &fetchedTor, verbose );
if ( noObsolete )
tor.stripObsoleteMessages();
tor.stripEmptyContexts();
if ( !tor.save(*tf) )
tqWarning( "pytqlupdate error: Cannot save '%s': %s", (*tf).utf8(),
tqWarning( "pytqlupdate error: Cannot save '%s': %s", (*tf).local8Bit().data(),
strerror(errno) );
}
if ( !metSomething ) {

@ -173,9 +173,9 @@ bool TsHandler::fatalError( const TQXmlParseException& exception )
TQString msg;
msg.sprintf( "Parse error at line %d, column %d (%s).",
exception.lineNumber(), exception.columnNumber(),
exception.message().utf8() );
exception.message().utf8().data() );
if ( tqApp == 0 )
tqWarning( "XML error: %s", msg.utf8() );
tqWarning( "XML error: %s", msg.local8Bit().data() );
else
TQMessageBox::information( tqApp->mainWidget(),
TQObject::tr("TQt Linguist"), msg );

@ -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;

@ -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;
}

Loading…
Cancel
Save