diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-20 21:30:16 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-21 09:03:18 +0200 |
commit | 007099ea3283bedfb0fe9a4c10f7331f8fc8bb73 (patch) | |
tree | 8c6dd1a512a8aaea6e46e70e04fe8d618384ef64 /include/comphelper/numbers.hxx | |
parent | 8fd3b0945607816fc7a73cec4eeb5c045bc2a450 (diff) |
comphelper: staruno -> css::uno
Change-Id: I21991280c5b7e4c6d0c200f4489c89a9f4fbc385
Diffstat (limited to 'include/comphelper/numbers.hxx')
-rw-r--r-- | include/comphelper/numbers.hxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/comphelper/numbers.hxx b/include/comphelper/numbers.hxx index 373a74112c24..a52b8b8c8c25 100644 --- a/include/comphelper/numbers.hxx +++ b/include/comphelper/numbers.hxx @@ -30,23 +30,22 @@ namespace comphelper { - namespace staruno = ::com::sun::star::uno; namespace starlang = ::com::sun::star::lang; namespace starutil = ::com::sun::star::util; /// returns the ::com::sun::star::util::NumberFormat of the given key under the given formats - COMPHELPER_DLLPUBLIC sal_Int16 getNumberFormatType(const staruno::Reference<starutil::XNumberFormats>& xFormats, sal_Int32 nKey); + COMPHELPER_DLLPUBLIC sal_Int16 getNumberFormatType(const css::uno::Reference<starutil::XNumberFormats>& xFormats, sal_Int32 nKey); /// returns the ::com::sun::star::util::NumberFormat of the given key under the given formatter - COMPHELPER_DLLPUBLIC sal_Int16 getNumberFormatType(const staruno::Reference<starutil::XNumberFormatter>& xFormatter, sal_Int32 nKey); + COMPHELPER_DLLPUBLIC sal_Int16 getNumberFormatType(const css::uno::Reference<starutil::XNumberFormatter>& xFormatter, sal_Int32 nKey); /// returns the decimals of the given numeric number formatunder the given formats - COMPHELPER_DLLPUBLIC staruno::Any getNumberFormatDecimals(const staruno::Reference<starutil::XNumberFormats>& xFormats, sal_Int32 nKey); + COMPHELPER_DLLPUBLIC css::uno::Any getNumberFormatDecimals(const css::uno::Reference<starutil::XNumberFormats>& xFormats, sal_Int32 nKey); /** returns the standard format for the given type and the given _rLocale */ sal_Int32 getStandardFormat( - const staruno::Reference<starutil::XNumberFormatter>& xFormatter, + const css::uno::Reference<starutil::XNumberFormatter>& xFormatter, sal_Int16 nType, const starlang::Locale& _rLocale); |