summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/appbas.cxx
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2001-11-07 17:06:54 +0000
committerAndreas Bregas <ab@openoffice.org>2001-11-07 17:06:54 +0000
commit19e1613a918b755db27da949f47f28e013ccfb32 (patch)
tree105c42f9065c70919a995b715f9408117678fc4e /sfx2/source/appl/appbas.cxx
parent064f82ac8cd7bb5a20acf57d70feecd9e4c3c9b3 (diff)
#86383# Dummy storage parameter for SfxDialogLibraryContainer Ctor
Diffstat (limited to 'sfx2/source/appl/appbas.cxx')
-rw-r--r--sfx2/source/appl/appbas.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sfx2/source/appl/appbas.cxx b/sfx2/source/appl/appbas.cxx
index a57741f686..2a42d465ee 100644
--- a/sfx2/source/appl/appbas.cxx
+++ b/sfx2/source/appl/appbas.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: appbas.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: mba $ $Date: 2001-11-01 17:44:37 $
+ * last change: $Author: ab $ $Date: 2001-11-07 18:06:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -708,7 +708,8 @@ BasicManager* SfxApplication::GetBasicManager()
pBasicCont->setBasicManager( pBasicManager );
// Dialog container
- SfxDialogLibraryContainer* pDialogCont = new SfxDialogLibraryContainer();
+ SotStorage* pStor = NULL;
+ SfxDialogLibraryContainer* pDialogCont = new SfxDialogLibraryContainer( pStor );
pDialogCont->acquire(); // Hold via UNO
Reference< XLibraryContainer > xDialogCont = static_cast< XLibraryContainer* >( pDialogCont );
pImp->pDialogLibContainer = pDialogCont;