summaryrefslogtreecommitdiff
path: root/configmgr/source/localizedvaluenode.hxx
diff options
context:
space:
mode:
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_;
};
}