Add QByteArray and QString wrappers around + as needed.
Fixes kdelibs building with Qt 4.8
This commit is contained in:
parent
4d5855c926
commit
4911e4b75c
@ -65,7 +65,7 @@ class ServiceProvider : public Jolie::AbstractAdaptor
|
||||
QString m_providerName;
|
||||
|
||||
QMap<ServiceJob*, Jolie::Message> m_messageMap;
|
||||
QMap<QString, QByteArray> m_tokens;
|
||||
QMap<QByteArray, QByteArray> m_tokens;
|
||||
QMap<QByteArray, int> m_descriptorMap;
|
||||
QList<Jolie::Message> m_messagesPendingAuthorization;
|
||||
|
||||
|
@ -51,10 +51,10 @@ void PlasmoidPackageTest::cleanup()
|
||||
// Clean things up.
|
||||
QDir local(QDir::homePath() + QLatin1String("/.kde-unit-test/packageRoot"));
|
||||
foreach (const QString &dir, local.entryList(QDir::Dirs)) {
|
||||
removeDir(QLatin1String("packageRoot/" + dir.toLatin1() + "/contents/code"));
|
||||
removeDir(QLatin1String("packageRoot/" + dir.toLatin1() + "/contents/images"));
|
||||
removeDir(QLatin1String("packageRoot/" + dir.toLatin1() + "/contents"));
|
||||
removeDir(QLatin1String("packageRoot/" + dir.toLatin1()));
|
||||
removeDir(QLatin1String("packageRoot/") + dir.toLatin1() + "/contents/code");
|
||||
removeDir(QLatin1String("packageRoot/") + dir.toLatin1() + "/contents/images");
|
||||
removeDir(QLatin1String("packageRoot/") + dir.toLatin1() + "/contents");
|
||||
removeDir(QLatin1String("packageRoot/") + dir.toLatin1());
|
||||
}
|
||||
|
||||
QDir().rmpath(QDir::homePath() + "/.kde-unit-test/packageRoot");
|
||||
|
Loading…
Reference in New Issue
Block a user