diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-27 15:26:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-27 15:47:57 +0200 |
commit | 02c079fc4f111865252fb89d705361792b289caf (patch) | |
tree | 624416a7b98c04930ddab8eac86c07ef80f1d5d6 /framework/source | |
parent | da2e1ea7d4a919a13caf159d1afce13843f7a621 (diff) |
Remove unnecessary typedefs
Change-Id: I0c65720a3db88242bdf36338864f6961478f547f
Diffstat (limited to 'framework/source')
-rw-r--r-- | framework/source/services/substitutepathvars.cxx | 6 |
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; }; |