diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-02-01 16:52:43 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-02-01 17:38:59 +0100 |
commit | 47f16670f05186413d6f5b436d36c0e52059c74a (patch) | |
tree | 338f9742d0538a5258495ee1ea43a2b52f0928b1 /vcl | |
parent | 150befe0fe9533f39df55b0d95ad25caaddf1830 (diff) |
VCL_DLLPUBLIC was missing for some *Value types
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/vcl/salnativewidgets.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/vcl/salnativewidgets.hxx b/vcl/inc/vcl/salnativewidgets.hxx index 6c7cba11ebb6..872fa35be87d 100644 --- a/vcl/inc/vcl/salnativewidgets.hxx +++ b/vcl/inc/vcl/salnativewidgets.hxx @@ -418,7 +418,7 @@ class VCL_DLLPUBLIC SpinbuttonValue : public ImplControlValue * * Value container for toolbars detailing the grip position */ -class ToolbarValue : public ImplControlValue +class VCL_DLLPUBLIC ToolbarValue : public ImplControlValue { public: ToolbarValue() : ImplControlValue( CTRL_TOOLBAR, BUTTONVALUE_DONTKNOW, 0 ) @@ -434,7 +434,7 @@ public: * * Value container for menubars specifying height of adjacent docking area */ -class MenubarValue : public ImplControlValue +class VCL_DLLPUBLIC MenubarValue : public ImplControlValue { public: MenubarValue() : ImplControlValue( CTRL_MENUBAR, BUTTONVALUE_DONTKNOW, 0 ) @@ -449,7 +449,7 @@ public: * Value container for menu items; specifies the rectangle for the whole item which * may be useful when drawing parts with a smaller rectangle. */ -class MenupopupValue : public ImplControlValue +class VCL_DLLPUBLIC MenupopupValue : public ImplControlValue { public: MenupopupValue() : ImplControlValue( CTRL_MENU_POPUP, BUTTONVALUE_DONTKNOW, 0 ) @@ -467,7 +467,7 @@ public: * * Value container for pushbuttons specifying additional drawing hints */ -class PushButtonValue : public ImplControlValue +class VCL_DLLPUBLIC PushButtonValue : public ImplControlValue { public: PushButtonValue() |