diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 18:48:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:11 +0100 |
commit | 1fd693e91d1b8ace3e90e0183ac379b738a42c62 (patch) | |
tree | 6e185f9346da3d6905007f2a8417dbf903b1a3b7 /svtools | |
parent | 5c968ab1da2a81da13a51c9e1b3de5ee49afe323 (diff) |
Avoid reserved identifiers
Change-Id: Ie27122c31703b1a09874d21a686cd0bc54ebbccb
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/hyperlabel.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/control/hyperlabel.cxx b/svtools/source/control/hyperlabel.cxx index 9b7203a91c39..4530f99a53d2 100644 --- a/svtools/source/control/hyperlabel.cxx +++ b/svtools/source/control/hyperlabel.cxx @@ -178,14 +178,14 @@ namespace svt return m_pImpl->Index; } - void HyperLabel::SetID( sal_Int16 _ID ) + void HyperLabel::SetID( sal_Int16 ID ) { - m_pImpl->ID = _ID; + m_pImpl->ID = ID; } - void HyperLabel::SetIndex( sal_Int32 _Index ) + void HyperLabel::SetIndex( sal_Int32 Index ) { - m_pImpl->Index = _Index; + m_pImpl->Index = Index; } void HyperLabel::SetLabel( const OUString& _rText ) |