diff options
| author | Karsten Heimrich <karsten.heimrich@qt.io> | 2023-04-17 12:59:52 +0200 |
|---|---|---|
| committer | Karsten Heimrich <karsten.heimrich@qt.io> | 2023-04-20 09:46:38 +0000 |
| commit | 07761bfb4dff0832147af4c155a865feb74aeeeb (patch) | |
| tree | 289fc50380d6fe4df3535aa1088f79d81549b001 /QtVsTools.Core/QtModule.cs | |
| parent | 02223c122eb56d06ee22e781b4d53998a5e37796 (diff) | |
Remove redundant type specification
Change-Id: I2fd01ab44923e301f4a9ae87445e8aaa9485cc83
Reviewed-by: Miguel Costa <miguel.costa@qt.io>
Diffstat (limited to 'QtVsTools.Core/QtModule.cs')
| -rw-r--r-- | QtVsTools.Core/QtModule.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/QtVsTools.Core/QtModule.cs b/QtVsTools.Core/QtModule.cs index 9b44c11c..422bc221 100644 --- a/QtVsTools.Core/QtModule.cs +++ b/QtVsTools.Core/QtModule.cs @@ -12,11 +12,11 @@ namespace QtVsTools.Core { public string Name; public bool Selectable; - public List<string> Defines = new List<string>(); + public List<string> Defines = new(); public string LibraryPrefix = string.Empty; - public List<string> AdditionalLibraries = new List<string>(); - public List<string> AdditionalLibrariesDebug = new List<string>(); - public List<string> IncludePath = new List<string>(); + public List<string> AdditionalLibraries = new(); + public List<string> AdditionalLibrariesDebug = new(); + public List<string> IncludePath = new(); public string proVarQT; private string majorVersion; |
