diff options
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 ) |