Kaydet (Commit) f1ffba89 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

constify

Change-Id: Id319c001b399a3105d6c9f87a58168f956ad46c3
üst e57febdb
...@@ -203,12 +203,12 @@ class ElementBase ...@@ -203,12 +203,12 @@ class ElementBase
: public ::cppu::WeakImplHelper1< css::xml::input::XElement > : public ::cppu::WeakImplHelper1< css::xml::input::XElement >
{ {
protected: protected:
DialogImport * _pImport; DialogImport * const _pImport;
ElementBase * _pParent; ElementBase * const _pParent;
sal_Int32 _nUid; const sal_Int32 _nUid;
OUString _aLocalName; const OUString _aLocalName;
css::uno::Reference< css::xml::input::XAttributes > _xAttributes; const css::uno::Reference< css::xml::input::XAttributes > _xAttributes;
public: public:
ElementBase( ElementBase(
...@@ -381,9 +381,9 @@ public: ...@@ -381,9 +381,9 @@ public:
class ImportContext class ImportContext
{ {
protected: protected:
DialogImport * _pImport; DialogImport * const _pImport;
css::uno::Reference< css::beans::XPropertySet > _xControlModel; const css::uno::Reference< css::beans::XPropertySet > _xControlModel;
OUString _aId; const OUString _aId;
public: public:
inline ImportContext( inline ImportContext(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment