include/vcl/toolkit/throbber.hxx | 2 +- vcl/source/control/throbber.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit 2068c08a9d831248863ae1e94a618dc307ba5b6c Author: Christopher Sherlock <chris.sherloc...@gmail.com> AuthorDate: Sat Feb 22 21:58:06 2025 +1100 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Mon Feb 24 10:08:28 2025 +0100 vcl: remove i_ prefix and use recommend variable prefixes Change-Id: I14d4880784873efbff6746e0bc3737f19e9b9bca Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182028 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> diff --git a/include/vcl/toolkit/throbber.hxx b/include/vcl/toolkit/throbber.hxx index ff1240074b05..aa78ea469cbf 100644 --- a/include/vcl/toolkit/throbber.hxx +++ b/include/vcl/toolkit/throbber.hxx @@ -44,7 +44,7 @@ public: }; public: - Throbber(vcl::Window* i_parentWindow, WinBits i_style); + Throbber(vcl::Window* pParentWindow, WinBits eStyle); virtual ~Throbber() override; virtual void dispose() override; diff --git a/vcl/source/control/throbber.cxx b/vcl/source/control/throbber.cxx index 5e6943f70457..0f292e9c60a3 100644 --- a/vcl/source/control/throbber.cxx +++ b/vcl/source/control/throbber.cxx @@ -34,8 +34,8 @@ using ::com::sun::star::graphic::XGraphicProvider; using ::com::sun::star::uno::Exception; namespace ImageScaleMode = css::awt::ImageScaleMode; -Throbber::Throbber( vcl::Window* i_parentWindow, WinBits i_style ) - :ImageControl( i_parentWindow, i_style ) +Throbber::Throbber(vcl::Window* pParentWindow, WinBits eStyle ) + :ImageControl(pParentWindow, eStyle ) ,mbRepeat( true ) ,mnStepTime( 100 ) ,mnCurStep( 0 )