diff options
author | Kurt Zenker <kz@openoffice.org> | 2009-09-11 09:40:28 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2009-09-11 09:40:28 +0000 |
commit | 627bc2b61dd69f63ec33576b4612646caf8b580c (patch) | |
tree | e7fa52729e9178a38268d14d9e5692dde5aff23a /basctl/source/basicide/basides3.cxx | |
parent | ed6179beb2ea5e67c2a43010b2edcd1f8094b7e8 (diff) |
CWS-TOOLING: integrate CWS ab70
2009-09-10 15:12:54 +0200 jsk r276034 : #i85434# - mandatory automatic update test
2009-09-10 15:11:06 +0200 jsk r276033 : #i85434# - mandatory automatic update test
2009-09-02 09:49:24 +0200 ab r275698 : #i85434# Dialog Import
Diffstat (limited to 'basctl/source/basicide/basides3.cxx')
-rw-r--r-- | basctl/source/basicide/basides3.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/basctl/source/basicide/basides3.cxx b/basctl/source/basicide/basides3.cxx index a435450e3a8a..581c685427d2 100644 --- a/basctl/source/basicide/basides3.cxx +++ b/basctl/source/basicide/basides3.cxx @@ -41,6 +41,7 @@ #define _SOLAR__PRIVATE 1 #include <basidesh.hxx> +#include <baside2.hxx> #include <baside3.hxx> #include <basobj.hxx> #include <localizationmgr.hxx> @@ -170,9 +171,10 @@ SdrView* BasicIDEShell::GetCurDlgView() const // Nur wenn Dialogfenster oben: void __EXPORT BasicIDEShell::ExecuteDialog( SfxRequest& rReq ) { - if ( !pCurWin || !pCurWin->IsA( TYPE( DialogWindow ) ) ) - return; - - pCurWin->ExecuteCommand( rReq ); + if ( pCurWin && ( pCurWin->IsA( TYPE( DialogWindow) ) || + (rReq.GetSlot() == SID_IMPORT_DIALOG &&pCurWin->IsA( TYPE( ModulWindow) ) ) ) ) + { + pCurWin->ExecuteCommand( rReq ); + } } |