summaryrefslogtreecommitdiff
path: root/automation/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-20 11:24:55 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-20 11:24:55 +0000
commita20cf9edc71bb89bc2e480cdb3d8e56764000d02 (patch)
treec882a308ab0a63a874cc0f843ddae0abc4a9d714 /automation/source
parent648f6a670f6bf0573f09d951b6fa88c9e4c33d98 (diff)
INTEGRATION: CWS gh7 (1.10.2); FILE MERGED
2004/09/15 08:37:49 gh 1.10.2.2: RESYNC: (1.10-1.11); FILE MERGED 2004/09/01 13:11:50 gh 1.10.2.1: #108829#Enable use of BackingWindow
Diffstat (limited to 'automation/source')
-rw-r--r--automation/source/server/sta_list.cxx19
1 files changed, 10 insertions, 9 deletions
diff --git a/automation/source/server/sta_list.cxx b/automation/source/server/sta_list.cxx
index 09821299c81e..be16f39c21f7 100644
--- a/automation/source/server/sta_list.cxx
+++ b/automation/source/server/sta_list.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sta_list.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: obo $ $Date: 2004-09-09 17:23:51 $
+ * last change: $Author: rt $ $Date: 2004-09-20 12:24:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -315,8 +315,9 @@ Window* StatementList::SearchAllWin( Window *pBase, Search &aSearch, BOOL MaybeB
Window *pPParent = pBase;
while ( pPParent->GET_REAL_PARENT() )
pPParent = pPParent->GET_REAL_PARENT();
- if ( !IsFirstDocFrame( pPParent ) )
- {
+
+// if ( !IsFirstDocFrame( pPParent ) )
+// {
// get overlap window. Will be dialog else document itself
pBase = pBase->GetWindow( WINDOW_OVERLAP );
@@ -335,15 +336,15 @@ Window* StatementList::SearchAllWin( Window *pBase, Search &aSearch, BOOL MaybeB
if ( pControl )
return pControl;
- }
+// }
}
}
pBase = Application::GetFirstTopLevelWindow();
// Skip FirstDocFrame
- if ( bSearchFocusFirst && IsFirstDocFrame( pBase ) )
- pBase = Application::GetNextTopLevelWindow( pBase );
+// if ( bSearchFocusFirst && IsFirstDocFrame( pBase ) )
+// pBase = Application::GetNextTopLevelWindow( pBase );
while ( pBase )
{
@@ -353,8 +354,8 @@ Window* StatementList::SearchAllWin( Window *pBase, Search &aSearch, BOOL MaybeB
pBase = Application::GetNextTopLevelWindow( pBase );
// Skip FirstDocFrame
- if ( bSearchFocusFirst && IsFirstDocFrame( pBase ) )
- pBase = Application::GetNextTopLevelWindow( pBase );
+// if ( bSearchFocusFirst && IsFirstDocFrame( pBase ) )
+// pBase = Application::GetNextTopLevelWindow( pBase );
}
return NULL;
}