summaryrefslogtreecommitdiff
path: root/configmgr/source/localizedvaluenode.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-27 10:59:23 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-28 07:25:03 +0000
commit506be190a9c0aa682c8c3a681a567966353afca8 (patch)
tree4b2ee61bddd2337aadf3b011707d4ac968508336 /configmgr/source/localizedvaluenode.hxx
parentfb6fc47b5518331c4e76ac1bac127e69015e9f12 (diff)
com::sun::star->css in configmgr
Change-Id: Ief642571ddccbf016fa1625b5859b4889a4a3e8e Reviewed-on: https://gerrit.libreoffice.org/17366 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'configmgr/source/localizedvaluenode.hxx')
-rw-r--r--configmgr/source/localizedvaluenode.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/configmgr/source/localizedvaluenode.hxx b/configmgr/source/localizedvaluenode.hxx
index 9d44a33cd081..f2aa68a084f9 100644
--- a/configmgr/source/localizedvaluenode.hxx
+++ b/configmgr/source/localizedvaluenode.hxx
@@ -33,20 +33,20 @@ namespace configmgr {
class LocalizedValueNode: public Node {
public:
explicit LocalizedValueNode(int layer);
- LocalizedValueNode(int layer, com::sun::star::uno::Any const & value);
+ LocalizedValueNode(int layer, css::uno::Any const & value);
virtual rtl::Reference< Node > clone(bool keepTemplateName) const SAL_OVERRIDE;
virtual OUString getTemplateName() const SAL_OVERRIDE;
- com::sun::star::uno::Any getValue() const { return value_;}
- com::sun::star::uno::Any *getValuePtr(int layer)
+ css::uno::Any getValue() const { return value_;}
+ css::uno::Any *getValuePtr(int layer)
{
setLayer(layer);
return &value_;
}
- void setValue(int layer, com::sun::star::uno::Any const & value);
+ void setValue(int layer, css::uno::Any const & value);
private:
LocalizedValueNode(LocalizedValueNode const & other);
@@ -55,7 +55,7 @@ private:
virtual Kind kind() const SAL_OVERRIDE;
- com::sun::star::uno::Any value_;
+ css::uno::Any value_;
};
}