Added controlled conversions to char* instead of automatic ascii conversions.

The definition of -UTQT_NO_ASCII_CAST is no longer needed.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/1/head
Slávek Banko 5 years ago
parent d5bdad9b22
commit 25fe483e16
Signed by: SlavekB
GPG Key ID: 608F5293A04BE668

@ -59,7 +59,7 @@ include( ConfigureChecks.cmake )
###### global compiler settings
add_definitions( -DHAVE_CONFIG_H -UTQT_NO_ASCII_CAST )
add_definitions( -DHAVE_CONFIG_H )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )

@ -406,9 +406,9 @@ KParts::ReadWritePart* KXMLEditorShell::createXMLPart(TQObject *parent)
KParts::ReadWritePart* KXMLEditorShell::createPart(TQObject *parent, const TQString& libName, const TQString& className)
{
KParts::ReadWritePart* newPart = 0L;
KLibFactory * pFactory = KLibLoader::self()->factory(libName);
KLibFactory * pFactory = KLibLoader::self()->factory(libName.local8Bit());
if (pFactory)
newPart = static_cast <KParts::ReadWritePart*> ( pFactory->create( parent, "KXMLEditor view", className ) );
newPart = static_cast <KParts::ReadWritePart*> ( pFactory->create( parent, "KXMLEditor view", className.utf8() ) );
else
kdFatal() << "KXMLEditorShell::KXMLEditorShell no " << libName << " found" << endl;
return newPart;

@ -106,7 +106,7 @@ bool KXEDocument::save(const TQString &strFileName)
if(strEncoding.length() <= 0)
pTextCodec = TQTextCodec::codecForLocale(); // default
else
pTextCodec = TQTextCodec::codecForName(strEncoding);
pTextCodec = TQTextCodec::codecForName(strEncoding.latin1());
if(pTextCodec == 0)
{ if(KMessageBox::questionYesNo(0, i18n("Codec for encoding %1 not found ! Continue saving ?").arg(strEncoding)) != KMessageBox::Yes)
@ -222,7 +222,7 @@ bool KXEDocument::open(const TQString &strFileName)
{
line = stream.readLine(); // line of text excluding '\n'
//printf( "%3d: %s\n", i++, line.latin1() );
fileTemporary.writeBlock(line, line.length());
fileTemporary.writeBlock(line.utf8(), line.utf8().length());
}
pIODevice->close();
}
@ -244,7 +244,7 @@ bool KXEDocument::open(const TQString &strFileName)
// For KOffice files let user to choose maindoc or documentinfo
if(strCompressedTarEntryName.length() == 0)
{ KXEChooseStringDialog dlgChooseString(0, 0, i18n("Choose file"), i18n("File:"));
{ KXEChooseStringDialog dlgChooseString(0, 0, i18n("Choose file").utf8(), i18n("File:").utf8());
dlgChooseString.m_pComboBox->insertItem("maindoc.xml");
dlgChooseString.m_pComboBox->insertItem("documentinfo.xml");
@ -321,7 +321,7 @@ bool KXEDocument::open(const TQString &strFileName)
{
strEncoding = strFirstLine.mid(iStart, iEnd - iStart);
TQTextCodec *pTextCodec = TQTextCodec::codecForName(strEncoding);
TQTextCodec *pTextCodec = TQTextCodec::codecForName(strEncoding.latin1());
if(pTextCodec)
txtStreamLocal.setCodec(pTextCodec);
else

Loading…
Cancel
Save