vcl/source/control/fixed.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit 67d0f364bb729025822f21e8e24a31cd5e8ffb38 Author: Christopher Sherlock <chris.sherloc...@gmail.com> AuthorDate: Sun Dec 22 22:42:57 2024 +1100 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Mon Feb 17 08:42:06 2025 +0100 vcl: _rStyle -> rStyle Change-Id: Icefcd78be0f9a30a3a714e9bc04b8e7a1b6f425e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179145 Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> Tested-by: Jenkins diff --git a/vcl/source/control/fixed.cxx b/vcl/source/control/fixed.cxx index 2ef36925f918..0f6be7366475 100644 --- a/vcl/source/control/fixed.cxx +++ b/vcl/source/control/fixed.cxx @@ -83,14 +83,14 @@ WinBits FixedText::ImplInitStyle( WinBits nStyle ) return nStyle; } -const vcl::Font& FixedText::GetCanonicalFont( const StyleSettings& _rStyle ) const +const vcl::Font& FixedText::GetCanonicalFont(const StyleSettings& rStyle) const { - return _rStyle.GetLabelFont(); + return rStyle.GetLabelFont(); } -const Color& FixedText::GetCanonicalTextColor( const StyleSettings& _rStyle ) const +const Color& FixedText::GetCanonicalTextColor(const StyleSettings& rStyle) const { - return _rStyle.GetLabelTextColor(); + return rStyle.GetLabelTextColor(); } FixedText::FixedText(vcl::Window* pParent, WinBits nStyle, WindowType eType)