summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-29 10:54:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-29 10:56:17 +0100
commit03198f825bd0a776f2f08aa7fb81c3cfa5324a69 (patch)
treeaa8e6bf042b0befb2ff23f9f072670d5a3b5a1f4 /sfx2/source/appl
parente6d15541d60a778424a9f4e135881bae5978b417 (diff)
callcatcher: ditch newly unused code
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/workwin.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/sfx2/source/appl/workwin.cxx b/sfx2/source/appl/workwin.cxx
index 32bf16ff93..9a7fa8768b 100644
--- a/sfx2/source/appl/workwin.cxx
+++ b/sfx2/source/appl/workwin.cxx
@@ -2753,22 +2753,6 @@ Rectangle SfxWorkWindow::GetFreeArea( sal_Bool bAutoHide ) const
return aClientArea;
}
-void SfxWorkWindow::DisableChildWindow_Impl( sal_uInt16 nId, sal_Bool bDisable )
-{
- sal_uInt16 nCount = pChildWins->Count();
- sal_uInt16 n;
- for (n=0; n<nCount; n++)
- if ((*pChildWins)[n]->nSaveId == nId)
- break;
- if ( n<nCount && (*pChildWins)[n]->bDisabled != bDisable )
- {
- (*pChildWins)[n]->bDisabled = bDisable;
- UpdateChildWindows_Impl();
- ArrangeChilds_Impl();
- ShowChilds_Impl();
- }
-}
-
void SfxWorkWindow::SetActiveChild_Impl( Window *pChild )
{
pActiveChild = pChild;