From bd0b76b167e87f1ef2632e18aff1d0817782d60b Mon Sep 17 00:00:00 2001 From: Tim Jenssen Date: Fri, 13 May 2016 13:58:28 +0200 Subject: [PATCH] fix build Change-Id: I11ac4138b8501060da0a125d38481e3b1d6853a9 Reviewed-by: hjk --- src/plugins/fakevim/fakevimplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index e67fc95aae2..788d87d74f3 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -1400,7 +1400,7 @@ void FakeVimPluginPrivate::maybeReadVimRc() QString fileName = theFakeVimSetting(ConfigVimRcPath)->value().toString(); if (fileName.isEmpty()) { fileName = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) - + (HostOsInfo::isWindowsHost() ? "/_vimrc" : "/.vimrc"); + + QLatin1String(HostOsInfo::isWindowsHost() ? "/_vimrc" : "/.vimrc"); } //qDebug() << "READING VIMRC: " << fileName; // Read it into a temporary handler for effects modifying global state.