summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuolbull.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-01-13 16:27:32 +0000
committerKurt Zenker <kz@openoffice.org>2005-01-13 16:27:32 +0000
commit3942b6094a80caf918e5315cc7608030f40b27bd (patch)
tree09fa30ef49672d71bb92daad0a5e3421e70f6995 /sd/source/ui/func/fuolbull.cxx
parent1e9fc6fdfb34ea7a8025d1d2eaee032ad250d35a (diff)
INTEGRATION: CWS impress26 (1.4.170); FILE MERGED
2004/12/16 15:28:31 cl 1.4.170.1: #i38511# fixed dialog diet to call correct OutlineBulletDialog::GetOutputItemSet()
Diffstat (limited to 'sd/source/ui/func/fuolbull.cxx')
-rw-r--r--sd/source/ui/func/fuolbull.cxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/sd/source/ui/func/fuolbull.cxx b/sd/source/ui/func/fuolbull.cxx
index 1359ddf994df..c89b9b8f2ffa 100644
--- a/sd/source/ui/func/fuolbull.cxx
+++ b/sd/source/ui/func/fuolbull.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fuolbull.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2004-07-12 15:04:39 $
+ * last change: $Author: kz $ $Date: 2005-01-13 17:27:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -144,11 +144,13 @@ FuOutlineBullet::FuOutlineBullet(ViewShell* pViewShell, ::sd::Window* pWindow,
{
SfxItemSet aSet( *pDlg->GetOutputItemSet() );
- if (pView->ISA(DrawViewShell)
- && pView->GetMarkedObjectList().GetMarkCount() == 0)
+ if (pView->ISA(DrawViewShell) )
{
- SfxUInt16Item aBulletState( EE_PARA_BULLETSTATE, 0 );
- aSet.Put(aBulletState);
+ if( pView->GetMarkedObjectList().GetMarkCount() == 0)
+ {
+ SfxUInt16Item aBulletState( EE_PARA_BULLETSTATE, 0 );
+ aSet.Put(aBulletState);
+ }
}
rReq.Done( aSet );