summaryrefslogtreecommitdiff
path: root/sc/inc/formulaparserpool.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/formulaparserpool.hxx')
-rw-r--r--sc/inc/formulaparserpool.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/formulaparserpool.hxx b/sc/inc/formulaparserpool.hxx
index 861fec495770..337fef59de5b 100644
--- a/sc/inc/formulaparserpool.hxx
+++ b/sc/inc/formulaparserpool.hxx
@@ -36,18 +36,18 @@ public:
~ScFormulaParserPool();
/** Returns true, if a formula parser is registered for the passed namespace. */
- bool hasFormulaParser( const ::rtl::OUString& rNamespace );
+ bool hasFormulaParser( const OUString& rNamespace );
/** Returns the formula parser that is registered for the passed namespace. */
::com::sun::star::uno::Reference< ::com::sun::star::sheet::XFormulaParser >
- getFormulaParser( const ::rtl::OUString& rNamespace );
+ getFormulaParser( const OUString& rNamespace );
private:
typedef ::boost::unordered_map<
- ::rtl::OUString,
+ OUString,
::com::sun::star::uno::Reference< ::com::sun::star::sheet::XFormulaParser >,
- ::rtl::OUStringHash,
- ::std::equal_to< ::rtl::OUString > > ParserMap;
+ OUStringHash,
+ ::std::equal_to< OUString > > ParserMap;
const ScDocument& mrDoc;
ParserMap maParsers;