Debugger: Code cosmetics

Move some constants to internalconstants.h or remove them entirely.

Change-Id: Iecd4def3b48130fb390bddf420da672d44e3d6b8
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2019-02-18 15:49:05 +01:00
parent 11f989bb93
commit 317ab49793
7 changed files with 102 additions and 104 deletions

View File

@@ -45,7 +45,10 @@ class DEBUGGER_EXPORT DebuggerRunConfigurationAspectData
public:
DebuggerLanguageStatus useCppDebugger = AutoEnabledLanguage;
DebuggerLanguageStatus useQmlDebugger = AutoEnabledLanguage;
uint qmlDebugServerPort = Constants::QML_DEFAULT_DEBUG_SERVER_PORT;
const uint QML_DEFAULT_DEBUG_SERVER_PORT = 3768;
uint qmlDebugServerPort = QML_DEFAULT_DEBUG_SERVER_PORT;
bool useMultiProcess = false;
};