aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2023-02-21 11:21:44 +0100
committerKarsten Heimrich <karsten.heimrich@qt.io>2023-02-24 12:37:18 +0000
commita1982adef4f580ae226c3a9e3928ae5d9f867f67 (patch)
tree6b9feee999024f54fc4c7c98e3fdf3aa65f969f7
parent2be3a7662a114cc0ad0ad23a63c662537e2a364b (diff)
Remove unsed type and member functions
Change-Id: I311d6c2a799ce2c4a8fb5538e68817ad945fa5af Reviewed-by: Miguel Costa <miguel.costa@qt.io>
-rw-r--r--QtVsTools.Core/QtMsBuild.cs36
-rw-r--r--QtVsTools.Core/QtProject.cs15
2 files changed, 0 insertions, 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;