From 525ea6a5f57aa0863cb4c80fec1e6e183e781912 Mon Sep 17 00:00:00 2001 From: "Malte Timmermann [mt]" Date: Wed, 3 Mar 2010 09:52:31 +0100 Subject: mtaccfixes: undo some changes from vcl108, which I solved differenlty with mtaccfixes (tab control) --- vcl/source/window/tabdlg.cxx | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'vcl/source/window/tabdlg.cxx') 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; -} - -- cgit