#include "keduvockvtmlwriter.h"
+#include <QtCore/QLatin1String>
#include <QtCore/QTextStream>
#include <QtCore/QFile>
s = m_doc->identifier( trans ).name().simplified();
if ( s.isEmpty() ) {
s.setNum( trans );
- s.prepend( "translation " );
+ s.prepend( QLatin1String("translation ") );
}
domElementTranslation.setAttribute( KV_LANG, s );
if ( s == q_org )
s = m_doc->identifier( ent ).name().simplified();
if ( s.isEmpty() ) {
s.setNum( ent );
- s.prepend( "translation " );
+ s.prepend( QLatin1String("translation ") );
}
domElementEntry.setAttribute( KV_LANG, s );
s = m_doc->identifier( ent ).name().simplified();
if ( s.isEmpty() ) {
s.setNum( ent );
- s.prepend( "translation " );
+ s.prepend( QLatin1String("translation ") );
}
domElementEntry.setAttribute( KV_LANG, s );
c+= temp.count( "\",", Qt::CaseSensitive );
expression.append( temp );
if ( c < 2 ) {
- expression.append( " " );
+ expression.append( ' ' );
}
}
#include "chemicaldataobject.h"
#include <kdebug.h>
+#include <QLatin1String>
+
class ChemicalDataObjectPrivate : public QSharedData
{
public:
break;
}
- botype = botype.prepend( "bo:" );
+ botype = botype.prepend( QLatin1String("bo:") );
return botype;
}