diff options
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/xcuparser.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configmgr/source/xcuparser.hxx b/configmgr/source/xcuparser.hxx index ec40372fed1d..bd74d434c612 100644 --- a/configmgr/source/xcuparser.hxx +++ b/configmgr/source/xcuparser.hxx @@ -135,8 +135,6 @@ private: {} }; - typedef std::stack< State > StateStack; - ValueParser valueParser_; Data & data_; Partial const * partial_; @@ -145,7 +143,7 @@ private: bool recordModifications_; bool trackPath_; OUString componentName_; - StateStack state_; + std::stack< State > state_; std::vector<OUString> path_; }; |