From a1982adef4f580ae226c3a9e3928ae5d9f867f67 Mon Sep 17 00:00:00 2001 From: Karsten Heimrich Date: Tue, 21 Feb 2023 11:21:44 +0100 Subject: Remove unsed type and member functions Change-Id: I311d6c2a799ce2c4a8fb5538e68817ad945fa5af Reviewed-by: Miguel Costa --- QtVsTools.Core/QtMsBuild.cs | 36 ------------------------------------ QtVsTools.Core/QtProject.cs | 15 --------------- 2 files changed, 51 deletions(-) diff --git a/QtVsTools.Core/QtMsBuild.cs b/QtVsTools.Core/QtMsBuild.cs index c1596cdc..839f50f6 100644 --- a/QtVsTools.Core/QtMsBuild.cs +++ b/QtVsTools.Core/QtMsBuild.cs @@ -353,42 +353,6 @@ namespace QtVsTools.Core.QtMsBuild property.ToString()); } - public string GetPropertyChangedValue( - QtRcc.Property property, - string itemName, - string configName) - { - return GetPropertyChangedValue( - configName, - QtRcc.ItemTypeName, - itemName, - property.ToString()); - } - - public string GetPropertyChangedValue( - QtRepc.Property property, - string itemName, - string configName) - { - return GetPropertyChangedValue( - configName, - QtRepc.ItemTypeName, - itemName, - property.ToString()); - } - - public string GetPropertyChangedValue( - QtUic.Property property, - string itemName, - string configName) - { - return GetPropertyChangedValue( - configName, - QtUic.ItemTypeName, - itemName, - property.ToString()); - } - public bool SetCommandLine( string itemType, object propertyStorage, diff --git a/QtVsTools.Core/QtProject.cs b/QtVsTools.Core/QtProject.cs index 7c8c068b..4ac9e3e1 100644 --- a/QtVsTools.Core/QtProject.cs +++ b/QtVsTools.Core/QtProject.cs @@ -1488,21 +1488,6 @@ namespace QtVsTools.Core } - public class VCMacroExpander : IVSMacroExpander - { - readonly object config; - public VCMacroExpander(object config) - { - this.config = config; - } - - public string ExpandString(string stringToExpand) - { - HelperFunctions.ExpandString(ref stringToExpand, config); - return stringToExpand; - } - } - public class QtCustomBuildTool { readonly QtMsBuildContainer qtMsBuild; -- cgit v1.2.3