svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=539170
return QString();
if ( f == Qt::ISODate ) {
- return d.toString( Qt::ISODate ) + "T" + t.toString( Qt::ISODate );
+ return d.toString( Qt::ISODate ) + 'T' + t.toString( Qt::ISODate );
}
#ifndef QT_NO_TEXTDATE
else if ( f == Qt::TextDate ) {
#endif
else if ( f == Qt::LocalDate ) {
return toString( KGlobal::locale()->dateFormat()
- + " " + KGlobal::locale()->timeFormat() );
+ + ' ' + KGlobal::locale()->timeFormat() );
}
return QString();
kDebug() << "Glossary::fixImagePath()" << endl;
QList<GlossaryItem*>::iterator it = m_itemlist.begin();
const QList<GlossaryItem*>::iterator itEnd = m_itemlist.end();
- QString imgtag = "<img src=\"" + m_picturepath + "/" + "\\1\" />";
+ QString imgtag = "<img src=\"" + m_picturepath + '/' + "\\1\" />";
QRegExp exp( "\\[img\\]([^[]+)\\[/img\\]" );
for ( ; it != itEnd ; ++it )