diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/dialog.hxx | 2 | ||||
-rw-r--r-- | include/vcl/layout.hxx | 2 | ||||
-rw-r--r-- | include/vcl/tabctrl.hxx | 2 | ||||
-rw-r--r-- | include/vcl/window.hxx | 2 |
4 files changed, 6 insertions, 2 deletions
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx index 4e20d633e54d..afaea70ab27f 100644 --- a/include/vcl/dialog.hxx +++ b/include/vcl/dialog.hxx @@ -104,7 +104,7 @@ public: bool isLayoutEnabled() const; void setOptimalLayoutSize(); bool isCalculatingInitialLayoutSize() const { return mbIsCalculatingInitialLayoutSize; } - virtual void queue_layout(); + virtual void queue_resize(); virtual bool set_property(const OString &rKey, const OString &rValue); VclButtonBox* get_action_area(); VclBox* get_content_area(); diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx index 47b9593f3fbc..0fa87ecab24f 100644 --- a/include/vcl/layout.hxx +++ b/include/vcl/layout.hxx @@ -39,6 +39,8 @@ public: { m_bLayoutDirty = true; } + + virtual void queue_resize(); protected: //these are the two that need to be implemented by //containers, figure out how much space you want... diff --git a/include/vcl/tabctrl.hxx b/include/vcl/tabctrl.hxx index 383c9236b700..53b3572feb15 100644 --- a/include/vcl/tabctrl.hxx +++ b/include/vcl/tabctrl.hxx @@ -201,6 +201,8 @@ public: { mbLayoutDirty = true; } + + virtual void queue_resize(); }; #endif // _SV_TABCTRL_HXX diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 4408adb98381..e255272ef6d8 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -1074,7 +1074,7 @@ public: * * akin to gtk_widget_queue_resize */ - void queue_resize(); + virtual void queue_resize(); /* * Sets the "width-request" property |