diff options
author | Malte Timmermann [mt] <malte.timmermann@sun.com> | 2010-03-03 09:52:31 +0100 |
---|---|---|
committer | Malte Timmermann [mt] <malte.timmermann@sun.com> | 2010-03-03 09:52:31 +0100 |
commit | 525ea6a5f57aa0863cb4c80fec1e6e183e781912 (patch) | |
tree | f91340000a62ef7ca442aa9a090ef7e97b4a7f72 /vcl/source/window/tabdlg.cxx | |
parent | 4cb2415ea9e405d813125fb73aac8c2cbddbfcec (diff) |
mtaccfixes: undo some changes from vcl108, which I solved differenlty with mtaccfixes (tab control)
Diffstat (limited to 'vcl/source/window/tabdlg.cxx')
-rw-r--r-- | vcl/source/window/tabdlg.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/vcl/source/window/tabdlg.cxx b/vcl/source/window/tabdlg.cxx index 02a8b6a5b717..874881c0c5ef 100644 --- a/vcl/source/window/tabdlg.cxx +++ b/vcl/source/window/tabdlg.cxx @@ -274,20 +274,3 @@ void TabDialog::AdjustLayout() ImplPosControls(); } -// ----------------------------------------------------------------------- - -TabControl* TabDialog::ImplGetFirstTabControl() const -{ - Window* pChild = GetWindow( WINDOW_FIRSTCHILD ); - while ( pChild ) - { - if ( pChild->IsVisible() && (pChild != mpViewWindow) ) - { - if ( pChild->GetType() == WINDOW_TABCONTROL ) - return (TabControl*)pChild; - } - pChild = pChild->GetWindow( WINDOW_NEXT ); - } - return NULL; -} - |