#include "applyviewpropsjob.h"
#include "views/viewproperties.h"
+#include <KIO/ListJob>
ApplyViewPropsJob::ApplyViewPropsJob(const QUrl &dir, const ViewProperties &viewProps)
: KIO::Job()
QUrl url(m_dir);
url = url.adjusted(QUrl::StripTrailingSlash);
- url.setPath(url.path() + '/' + name);
+ url.setPath(url.path() + QLatin1Char('/') + name);
Q_ASSERT(m_viewProps);
}
emitResult();
}
+
+#include "moc_applyviewpropsjob.cpp"