diff options
author | Sebastian Geerken <devnull@localhost> | 2014-07-18 14:52:26 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-07-18 14:52:26 +0200 |
commit | 441370fa67c40a47916b7a44d4fa1d18feadb6dd (patch) | |
tree | 9da8d942ce8441d9fa114601b292abce2a4220d6 /dw/layout.hh | |
parent | f5aae2463edf320c69053959e53ec6ea3ef87935 (diff) |
Handling nested layouts (e. g. <button>), part 3 (finish).
Diffstat (limited to 'dw/layout.hh')
-rw-r--r-- | dw/layout.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/layout.hh b/dw/layout.hh index d83aeedb..88532187 100644 --- a/dw/layout.hh +++ b/dw/layout.hh @@ -269,8 +269,6 @@ private: void enterResizeIdle () { resizeIdleCounter++; } void leaveResizeIdle () { resizeIdleCounter--; } - void containerSizeChanged (); - public: Layout (Platform *platform); ~Layout (); @@ -332,6 +330,8 @@ public: return buttonEvent (BUTTON_PRESS, view, numPressed, x, y, state, button); } + void containerSizeChanged (); + /** * \brief This function is called by a view, to delegate a button press * event. |