aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;