summaryrefslogtreecommitdiffstats
path: root/framework/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-09-27 15:26:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-09-27 15:47:57 +0200
commit02c079fc4f111865252fb89d705361792b289caf (patch)
tree624416a7b98c04930ddab8eac86c07ef80f1d5d6 /framework/source
parentUse range-based for (diff)
downloadcore-02c079fc4f111865252fb89d705361792b289caf.tar.gz
core-02c079fc4f111865252fb89d705361792b289caf.zip
Remove unnecessary typedefs
Change-Id: I0c65720a3db88242bdf36338864f6961478f547f
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/services/substitutepathvars.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/framework/source/services/substitutepathvars.cxx b/framework/source/services/substitutepathvars.cxx
index 05324adcd9ae..833c6d4cb70b 100644
--- a/framework/source/services/substitutepathvars.cxx
+++ b/framework/source/services/substitutepathvars.cxx
@@ -216,8 +216,6 @@ struct ReSubstUserVarOrder
}
};
-typedef std::list< ReSubstFixedVarOrder > ReSubstFixedVarOrderVector;
-typedef std::list< ReSubstUserVarOrder > ReSubstUserVarOrderVector;
typedef ::cppu::WeakComponentImplHelper<
css::util::XStringSubstitution,
css::lang::XServiceInfo > SubstitutePathVariables_BASE;
@@ -285,8 +283,8 @@ private:
SubstituteVariables m_aSubstVarMap; // Active rule set map indexed by variable name!
PredefinedPathVariables m_aPreDefVars; // All predefined variables
SubstitutePathVariables_Impl m_aImpl; // Implementation class that access the configuration
- ReSubstFixedVarOrderVector m_aReSubstFixedVarOrder; // To speed up resubstitution fixed variables (order for lookup)
- ReSubstUserVarOrderVector m_aReSubstUserVarOrder; // To speed up resubstitution user variables
+ std::list<ReSubstFixedVarOrder> m_aReSubstFixedVarOrder; // To speed up resubstitution fixed variables (order for lookup)
+ std::list<ReSubstUserVarOrder> m_aReSubstUserVarOrder; // To speed up resubstitution user variables
css::uno::Reference< css::uno::XComponentContext > m_xContext;
};