aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2017-10-23 13:46:54 +0200
committerTobias Hunger <tobias.hunger@qt.io>2017-10-24 14:31:15 +0000
commit19bb8e34f8d261c4ff04c670375c85e1e0f7cad9 (patch)
tree2b79a560f1b40c80856d1989edc694607503def2 /src/plugins/projectexplorer/applicationlauncher.cpp
parent68589a3fbc9afe4485baf728729c969e0f508385 (diff)
ProjectExplorer: Fix translation issues
Add missing Q_OBJECT macro, use sensible contexts, and use "simpler" namespace resolution (for QTBUG-64007) Change-Id: I2417a7a40e8ba0ff4bfdff34d2a4c57d8dcdeb00 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.cpp')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.cpp b/src/plugins/projectexplorer/applicationlauncher.cpp
index 1dcb209250..da29506325 100644
--- a/src/plugins/projectexplorer/applicationlauncher.cpp
+++ b/src/plugins/projectexplorer/applicationlauncher.cpp
@@ -57,9 +57,11 @@
*/
using namespace Utils;
-using namespace ProjectExplorer::Internal;
namespace ProjectExplorer {
+
+using namespace Internal;
+
namespace Internal {
enum State { Inactive, Run };