diff options
author | Jan Holesovsky <kendy@collabora.com> | 2018-11-28 22:21:57 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2018-12-07 11:52:35 +0100 |
commit | ec1b227b435a555464cb2a9fe747631485ebdbf1 (patch) | |
tree | ba4790390255eca7bd77e5ce9ecefdd0ea8fc466 /include/vcl/salnativewidgets.hxx | |
parent | bb05164545cfe7101db8fe300dde22d8bac3fc7d (diff) |
custom widgets: Rename 'stock' to 'action'.
If the button has this property, it means it is located in the action
area, not that it is a stock button per se.
Change-Id: Ia57ad24d8cd4ff1d7b74d7ef82da0f352fe3deb3
Diffstat (limited to 'include/vcl/salnativewidgets.hxx')
-rw-r--r-- | include/vcl/salnativewidgets.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx index 9ccfa0319057..a9a572731e3c 100644 --- a/include/vcl/salnativewidgets.hxx +++ b/include/vcl/salnativewidgets.hxx @@ -497,7 +497,7 @@ public: : ImplControlValue( ControlType::Pushbutton, 0 ) , mbBevelButton(false) , mbSingleLine(true) - , mbIsStock(false) + , mbIsAction(false) {} virtual ~PushButtonValue() override; @@ -510,7 +510,7 @@ public: bool mbBevelButton:1; // only used on OSX bool mbSingleLine:1; // only used on OSX - bool mbIsStock:1; + bool mbIsAction:1; }; |