aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.Core
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2021-12-01 12:26:50 +0100
committerKarsten Heimrich <karsten.heimrich@qt.io>2021-12-02 11:13:40 +0000
commitb21bab895f9d6bf0d336fd5326e4199bf69a9910 (patch)
treefc7ea0ab3d21c2490489d4b4401b410bbfb18735 /QtVsTools.Core
parent8f7fadad2fb54f0f8e9a90e48bcc100c5a9852c9 (diff)
Cleanup and merge remaining registry settings handling
Most registry options are gone except for the TextMate language path. Get rid of the separate classes and merge everything into the single spot of usage. Change-Id: I9a63fdd38a18557b8bcc28103491d0ce55f78160 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
Diffstat (limited to 'QtVsTools.Core')
-rw-r--r--QtVsTools.Core/QtVsTools.Core.csproj1
-rw-r--r--QtVsTools.Core/Statics.cs45
2 files changed, 0 insertions, 46 deletions
diff --git a/QtVsTools.Core/QtVsTools.Core.csproj b/QtVsTools.Core/QtVsTools.Core.csproj
index c0b6b2b4..bc8a83e1 100644
--- a/QtVsTools.Core/QtVsTools.Core.csproj
+++ b/QtVsTools.Core/QtVsTools.Core.csproj
@@ -171,7 +171,6 @@
<Compile Include="RccOptions.cs" />
<Compile Include="Resources.cs" />
<Compile Include="SR.cs" />
- <Compile Include="Statics.cs" />
<Compile Include="TemplateType.cs" />
<Compile Include="VersionInformation.cs" />
<Compile Include="VisualStudio\IProjectTracker.cs" />
diff --git a/QtVsTools.Core/Statics.cs b/QtVsTools.Core/Statics.cs
deleted file mode 100644
index b10bdcf3..00000000
--- a/QtVsTools.Core/Statics.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the Qt VS Tools.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-namespace QtVsTools.Core
-{
- public static class Statics
- {
- public const string QmlTextMateKey = @"Enable";
- public const string QmlTextMatePath = @"QtVsTools\Qml\TextMate";
-
- public const string QmlClassifierKey = @"Enable";
- public const string QmlClassifierPath = @"QtVsTools\Qml\Classifier";
-
- public const string HelpPreferenceKey = @"Offline";
- public const string HelpPreferencePath = @"QtVsTools\Help\Preference";
-
- public const string AddQtVersionDialogKey = @"LastSelectedPath";
- public const string AddQtVersionDialogPath = @"QtVsTools\AddQtVersionDialog";
- }
-}