diff options
author | Gabor Kelemen <gabor.kelemen.extern@allotropia.de> | 2023-02-15 01:18:28 +0100 |
---|---|---|
committer | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-02-16 08:14:39 +0000 |
commit | 857b74041aa339e56ee8b2a05a910172753ed783 (patch) | |
tree | 7b5ba27120faa015f86080fd91bed13828470020 /xmloff/source/text/txtimp.cxx | |
parent | 79176694ddc7bce40ce2b82d3f332be8642a5167 (diff) |
Drop 'using namespace ::std' in dirs [u-x]*
Change-Id: I8c044369826b00241496cfc7ba2463e507c0d1a6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147077
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen <kelemeng@ubuntu.com>
Diffstat (limited to 'xmloff/source/text/txtimp.cxx')
-rw-r--r-- | xmloff/source/text/txtimp.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xmloff/source/text/txtimp.cxx b/xmloff/source/text/txtimp.cxx index 87fd2b91283a..e9858e31a722 100644 --- a/xmloff/source/text/txtimp.cxx +++ b/xmloff/source/text/txtimp.cxx @@ -74,7 +74,6 @@ using ::com::sun::star::ucb::XAnyCompare; -using namespace ::std; using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; @@ -340,8 +339,8 @@ namespace class FieldParamImporter { public: - typedef pair<OUString,OUString> field_param_t; - typedef vector<field_param_t> field_params_t; + typedef std::pair<OUString,OUString> field_param_t; + typedef std::vector<field_param_t> field_params_t; FieldParamImporter(const field_params_t* const pInParams, Reference<XNameContainer> const & xOutParams) : m_pInParams(pInParams) , m_xOutParams(xOutParams) |