fix a few krazy warnings

This commit is contained in:
hjk
2011-02-23 15:28:39 +01:00
parent 2e59bc9a66
commit 7a35865c50
3 changed files with 6 additions and 6 deletions

View File

@@ -151,7 +151,7 @@ void MacroManager::MacroManagerPrivate::initialize()
QStringList files = dir.entryList(filter, QDir::Files);
foreach (const QString &name, files) {
QString fileName = dir.absolutePath()+"/"+name;
QString fileName = dir.absolutePath() + '/' + name;
Macro *macro = new Macro;
macro->loadHeader(fileName);
addMacro(macro);