summaryrefslogtreecommitdiffstats
path: root/configmgr/source/propertynode.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/propertynode.hxx
parentloplugin:unreffun (diff)
downloadcore-506be190a9c0aa682c8c3a681a567966353afca8.tar.gz
core-506be190a9c0aa682c8c3a681a567966353afca8.zip
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/propertynode.hxx')
-rw-r--r--configmgr/source/propertynode.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/configmgr/source/propertynode.hxx b/configmgr/source/propertynode.hxx
index 805efa18de65..273fc5235eef 100644
--- a/configmgr/source/propertynode.hxx
+++ b/configmgr/source/propertynode.hxx
@@ -37,7 +37,7 @@ class PropertyNode: public Node {
public:
PropertyNode(
int layer, Type staticType, bool nillable,
- com::sun::star::uno::Any const & value, bool extension);
+ css::uno::Any const & value, bool extension);
virtual rtl::Reference< Node > clone(bool keepTemplateName) const SAL_OVERRIDE;
@@ -45,10 +45,10 @@ public:
bool isNillable() const { return nillable_;}
- com::sun::star::uno::Any getValue(Components & components);
+ css::uno::Any getValue(Components & components);
- void setValue(int layer, com::sun::star::uno::Any const & value);
- com::sun::star::uno::Any *getValuePtr(int layer);
+ void setValue(int layer, css::uno::Any const & value);
+ css::uno::Any *getValuePtr(int layer);
void setExternal(int layer, OUString const & descriptor);
@@ -67,7 +67,7 @@ private:
bool nillable_;
bool extension_;
OUString externalDescriptor_;
- com::sun::star::uno::Any value_;
+ css::uno::Any value_;
};
}