diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-04-11 09:28:58 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-04-11 09:28:58 +0000 |
commit | 1942e3cadc90b65eac2e87d7ba39b49c11157c66 (patch) | |
tree | 9c6a578dfd8bea10a1fd94c536ba322d451e813e /sw/source/ui/uno | |
parent | 1c8cf97568ebd993880f6aadc86a17bfd2cccb61 (diff) |
#83970# fix missing breaks
Diffstat (limited to 'sw/source/ui/uno')
-rw-r--r-- | sw/source/ui/uno/unotxdoc.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/source/ui/uno/unotxdoc.cxx b/sw/source/ui/uno/unotxdoc.cxx index 5fc2c4150f93..b12f19cca873 100644 --- a/sw/source/ui/uno/unotxdoc.cxx +++ b/sw/source/ui/uno/unotxdoc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unotxdoc.cxx,v $ * - * $Revision: 1.32 $ + * $Revision: 1.33 $ * - * last change: $Author: os $ $Date: 2001-04-09 08:35:05 $ + * last change: $Author: mtg $ $Date: 2001-04-11 10:28:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2094,6 +2094,7 @@ void SwXTextDocument::setPropertyValue(const OUString& rPropertyName, aRequest.AppendItem(SfxUInt16Item( SID_ATTR_YEAR2000, static_cast < sal_uInt16 > ( nYear ) ) ); pDocShell->Execute ( aRequest ); } + break; case WID_DOC_AUTOMATIC_CONTROL_FOCUS: { SwDrawDocument * pDrawDoc; @@ -2132,6 +2133,7 @@ void SwXTextDocument::setPropertyValue(const OUString& rPropertyName, pDrawDoc->SetOpenInDesignMode ( bMode ); } } + break; case WID_DOC_APPLY_USER_DATA: { SfxDocumentInfo& rInfo = pDocShell->GetDocInfo(); @@ -2331,6 +2333,7 @@ Any SwXTextDocument::getPropertyValue(const OUString& rPropertyName) bMode = sal_True; aAny.setValue(&bMode, ::getBooleanCppuType()); } + break; case WID_DOC_APPLY_USER_DATA: { SfxDocumentInfo &rInfo = pDocShell->GetDocInfo(); @@ -2540,6 +2543,7 @@ PropertyState SAL_CALL SwXTextDocument::getPropertyState( const OUString& rPrope pDrawDoc->GetOpenInDesignMode()) eRet = PropertyState_DEFAULT_VALUE; } + break; case WID_DOC_APPLY_USER_DATA: { SfxDocumentInfo &rInfo = pDocShell->GetDocInfo(); |