From 62d98daa586e8ed9af1f769451875e2e64d816dd Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 15 Jul 2014 23:33:17 +0300 Subject: Utils: Remove unneeded namespace qualifications Change-Id: Iacab8410ab4d3b63f96e7541b450e3cc729ab662 Reviewed-by: Daniel Teske Reviewed-by: hjk --- src/libs/utils/consoleprocess_unix.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/utils/consoleprocess_unix.cpp') diff --git a/src/libs/utils/consoleprocess_unix.cpp b/src/libs/utils/consoleprocess_unix.cpp index 68917967dc..6e338866a3 100644 --- a/src/libs/utils/consoleprocess_unix.cpp +++ b/src/libs/utils/consoleprocess_unix.cpp @@ -150,7 +150,7 @@ bool ConsoleProcess::start(const QString &program, const QString &args) } QString stubPath = QCoreApplication::applicationDirPath(); - if (Utils::HostOsInfo::isMacHost()) + if (HostOsInfo::isMacHost()) stubPath.append(QLatin1String("/../Resources/qtcreator_process_stub")); else stubPath.append(QLatin1String("/qtcreator_process_stub")); @@ -363,7 +363,7 @@ static const Terminal knownTerminals[] = QString ConsoleProcess::defaultTerminalEmulator() { - if (Utils::HostOsInfo::isMacHost()) { + if (HostOsInfo::isMacHost()) { QString termCmd = QCoreApplication::applicationDirPath() + QLatin1String("/../Resources/scripts/openTerminal.command"); if (QFile(termCmd).exists()) return termCmd.replace(QLatin1Char(' '), QLatin1String("\\ ")); -- cgit v1.2.1