vcl/source/control/ctrl.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3d26b7363aaf105209194a5a64f99fde79d2492f
Author:     Christopher Sherlock <chris.sherloc...@gmail.com>
AuthorDate: Wed Dec 11 00:31:21 2024 +1100
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Sat Feb 8 08:13:27 2025 +0100

    vcl: nStyle -> eStyle
    
    Change-Id: Iae6c45830ccbfdf1841099270572ecb9fd7c8109
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178226
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/vcl/source/control/ctrl.cxx b/vcl/source/control/ctrl.cxx
index d4ba507f33e0..522d6b8daf8d 100644
--- a/vcl/source/control/ctrl.cxx
+++ b/vcl/source/control/ctrl.cxx
@@ -42,11 +42,11 @@ Control::Control( WindowType nType ) :
     ImplInitControlData();
 }
 
-Control::Control( vcl::Window* pParent, WinBits nStyle ) :
-    Window( WindowType::CONTROL )
+Control::Control(vcl::Window* pParent, WinBits eStyle)
+    : Window(WindowType::CONTROL)
 {
     ImplInitControlData();
-    ImplInit( pParent, nStyle, nullptr );
+    ImplInit(pParent, eStyle, nullptr);
 }
 
 Control::~Control()

Reply via email to