diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 18:47:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:10 +0100 |
commit | 588fca321363ab9dc93fbe9296f1eec69460f779 (patch) | |
tree | ecd691c4eb8e611d8402c5021f68b36734b7d9fb /include/svtools | |
parent | fc93d61fa9e5733cd55bcae15604bbf247ca701a (diff) |
Avoid reserved identifiers
Change-Id: I7fe3cbd19358dafb998cae189f07e93a9ee791a2
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/hyperlabel.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/hyperlabel.hxx b/include/svtools/hyperlabel.hxx index 2035ad66abc1..b70e706f73a8 100644 --- a/include/svtools/hyperlabel.hxx +++ b/include/svtools/hyperlabel.hxx @@ -57,10 +57,10 @@ namespace svt virtual void DataChanged( const DataChangedEvent& rDCEvt ) override; - void SetID( sal_Int16 _ID ); + void SetID( sal_Int16 ID ); sal_Int16 GetID() const; - void SetIndex( sal_Int32 _Index ); + void SetIndex( sal_Int32 Index ); sal_Int32 GetIndex() const; void SetLabel( const OUString& _rText ); |