summaryrefslogtreecommitdiff
path: root/vcl/source/window/tabdlg.cxx
diff options
context:
space:
mode:
authorMalte Timmermann [mt] <malte.timmermann@sun.com>2010-03-03 09:52:31 +0100
committerMalte Timmermann [mt] <malte.timmermann@sun.com>2010-03-03 09:52:31 +0100
commit525ea6a5f57aa0863cb4c80fec1e6e183e781912 (patch)
treef91340000a62ef7ca442aa9a090ef7e97b4a7f72 /vcl/source/window/tabdlg.cxx
parent4cb2415ea9e405d813125fb73aac8c2cbddbfcec (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.cxx17
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;
-}
-