LanguageClient: Fix compile

Change-Id: I3d105513c2807f4e7aebc705e6628c62acaba192
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2019-09-10 06:43:50 +02:00
committed by David Schulz
parent 332031d677
commit a0352f24d0

View File

@@ -72,6 +72,7 @@ constexpr char executableKey[] = "executable";
constexpr char argumentsKey[] = "arguments"; constexpr char argumentsKey[] = "arguments";
constexpr char settingsGroupKey[] = "LanguageClient"; constexpr char settingsGroupKey[] = "LanguageClient";
constexpr char clientsKey[] = "clients"; constexpr char clientsKey[] = "clients";
constexpr char mimeType[] = "application/language.client.setting";
namespace LanguageClient { namespace LanguageClient {
@@ -105,7 +106,6 @@ public:
private: private:
static constexpr int idRole = Qt::UserRole + 1; static constexpr int idRole = Qt::UserRole + 1;
static constexpr char mimeType[] = "application/language.client.setting";
QList<BaseSettings *> m_settings; // owned QList<BaseSettings *> m_settings; // owned
QList<BaseSettings *> m_removed; QList<BaseSettings *> m_removed;
}; };