diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-12 10:42:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-12 11:38:00 +0100 |
commit | 637587fc8fe4ed3ae7c254fc1dc117bb78f326cb (patch) | |
tree | 394180e582edb414eb71f47595d235149ffb1089 /vcl/source/control/ctrl.cxx | |
parent | 3abc98687715072080ba408b12fd8ef0a17573d5 (diff) |
drop unused argument
Change-Id: I54a86f98289877abc435e2c7397ff5fd6c516545
Diffstat (limited to 'vcl/source/control/ctrl.cxx')
-rw-r--r-- | vcl/source/control/ctrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/ctrl.cxx b/vcl/source/control/ctrl.cxx index 2235cd4c3ca1..c2d697d7d640 100644 --- a/vcl/source/control/ctrl.cxx +++ b/vcl/source/control/ctrl.cxx @@ -60,7 +60,7 @@ Control::Control( vcl::Window* pParent, const ResId& rResId ) : rResId.SetRT( RSC_CONTROL ); WinBits nStyle = ImplInitRes( rResId ); ImplInit( pParent, nStyle, nullptr ); - ImplLoadRes( rResId ); + ImplLoadRes(); if ( !(nStyle & WB_HIDE) ) Show(); |