diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-06 15:56:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-06 15:56:47 +0100 |
commit | 190bfac40e1b7a3b32793ac82eb3e67aefd6c785 (patch) | |
tree | 96e886357c8aa30150cf4d37c18954307317c2fa /vcl/inc | |
parent | 0f6dbd1b1762e0b273046a045eb902475fc6890b (diff) |
callcatcher: update unused code list and drop more old-layouting unuseds
Change-Id: I1096ea50a23040090c9ee2975a4165c6de238497
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/vcl/arrange.hxx | 1 | ||||
-rw-r--r-- | vcl/inc/vcl/window.hxx | 16 |
2 files changed, 1 insertions, 16 deletions
diff --git a/vcl/inc/vcl/arrange.hxx b/vcl/inc/vcl/arrange.hxx index 90316bdd7d09..5d99723da797 100644 --- a/vcl/inc/vcl/arrange.hxx +++ b/vcl/inc/vcl/arrange.hxx @@ -317,7 +317,6 @@ namespace vcl // returns the index of the added label size_t addRow( Window* i_pLabel, boost::shared_ptr<WindowArranger> const& i_rElement, long i_nIndent = 0 ); - size_t addRow( Window* i_pLabel, Window* i_pElement, long i_nIndent = 0, const Size& i_rElementMinSize = Size() ); }; class VCL_DLLPUBLIC Indenter : public WindowArranger diff --git a/vcl/inc/vcl/window.hxx b/vcl/inc/vcl/window.hxx index 0de41b613404..a70ff66f61e4 100644 --- a/vcl/inc/vcl/window.hxx +++ b/vcl/inc/vcl/window.hxx @@ -126,7 +126,6 @@ namespace dnd { namespace vcl { struct ControlLayoutData; - class WindowArranger; struct ExtWindowImpl; } @@ -1313,20 +1312,7 @@ public: // ExtImpl - // layouting - boost::shared_ptr< vcl::WindowArranger > getLayout(); - - /* add a child Window - addWindow will do the following things - - insert the passed window into the child list (equivalent to i_pWin->SetParent( this )) - - mark the window as "owned", meaning that the added Window will be destroyed by - the parent's desctructor. - This means: do not pass in member windows or stack objects here. Do not cause - the destructor of the added window to be called in any way. - - to avoid ownership pass i_bTakeOwnership as "false" - */ - void addWindow( Window* i_pWin, bool i_bTakeOwnership = true ); + // old layouting, in-process-of-removal /* return the identifier of this window */ |