summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2015-02-05 21:35:04 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2015-02-05 21:45:28 +0100
commitf1ffba89214e3250a5781feb90e4c100d04038b9 (patch)
tree81611570ca7b7fe2411251ad9d3ee2100f7ff7c2 /xmlscript
parente57febdb7fbe34d6548f780336cf9ee4a729cb5c (diff)
constify
Change-Id: Id319c001b399a3105d6c9f87a58168f956ad46c3
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xmldlg_imexp/imp_share.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmlscript/source/xmldlg_imexp/imp_share.hxx b/xmlscript/source/xmldlg_imexp/imp_share.hxx
index 7fe35050811b..cec6fe51aebe 100644
--- a/xmlscript/source/xmldlg_imexp/imp_share.hxx
+++ b/xmlscript/source/xmldlg_imexp/imp_share.hxx
@@ -203,12 +203,12 @@ class ElementBase
: public ::cppu::WeakImplHelper1< css::xml::input::XElement >
{
protected:
- DialogImport * _pImport;
- ElementBase * _pParent;
+ DialogImport * const _pImport;
+ ElementBase * const _pParent;
- sal_Int32 _nUid;
- OUString _aLocalName;
- css::uno::Reference< css::xml::input::XAttributes > _xAttributes;
+ const sal_Int32 _nUid;
+ const OUString _aLocalName;
+ const css::uno::Reference< css::xml::input::XAttributes > _xAttributes;
public:
ElementBase(
@@ -381,9 +381,9 @@ public:
class ImportContext
{
protected:
- DialogImport * _pImport;
- css::uno::Reference< css::beans::XPropertySet > _xControlModel;
- OUString _aId;
+ DialogImport * const _pImport;
+ const css::uno::Reference< css::beans::XPropertySet > _xControlModel;
+ const OUString _aId;
public:
inline ImportContext(