diff options
author | Joren De Cuyper <joren.libreoffice@telenet.be> | 2013-03-17 14:42:47 +0100 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-18 08:21:34 +0000 |
commit | e01daa86e757dab289bfa60576ce235b31eba720 (patch) | |
tree | de13f2ca4924576fc23db74a669503bc8ad56383 | |
parent | b1fc129c6b973a65080abe5ea5145b012c05108d (diff) |
Comment cleanup and several indentation fixes
Change-Id: Ib3e51969b2d2624e69a2270c5446b7ac1095a2b5
Reviewed-on: https://gerrit.libreoffice.org/2789
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
29 files changed, 183 insertions, 534 deletions
diff --git a/sw/source/ui/app/appenv.cxx b/sw/source/ui/app/appenv.cxx index 3b47034110ec..d0f64ab5dc0d 100644 --- a/sw/source/ui/app/appenv.cxx +++ b/sw/source/ui/app/appenv.cxx @@ -505,5 +505,4 @@ void SwModule::InsertEnv( SfxRequest& rReq ) delete pDlg; } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/apphdl.cxx b/sw/source/ui/app/apphdl.cxx index 0bbbd3653519..d9b62fc3342c 100644 --- a/sw/source/ui/app/apphdl.cxx +++ b/sw/source/ui/app/apphdl.cxx @@ -101,14 +101,11 @@ using namespace ::com::sun::star; -/*-------------------------------------------------------------------- - Description: Slotmaps for the application's methods - --------------------------------------------------------------------*/ +// Slotmaps for the application's methods // here are the SlotID's being included // see Idl-file -// #define SwModule #define ViewSettings #define PrintSettings @@ -126,12 +123,7 @@ SFX_IMPL_INTERFACE( SwModule, SfxModule, SW_RES(RID_SW_NAME) ) SW_RES(RID_MODULE_TOOLBOX) ); } - -/*-------------------------------------------------------------------- - Description: other states - --------------------------------------------------------------------*/ - - +// other states void SwModule::StateOther(SfxItemSet &rSet) { SfxWhichIter aIter(rSet); @@ -235,10 +227,8 @@ static SwView* lcl_LoadDoc(SwView* pView, const String& rURL) return pNewView; } -/*-------------------------------------------------------------------- - Description: start field dialog - --------------------------------------------------------------------*/ +// start field dialog void NewXForms( SfxRequest& rReq ); // implementation: below namespace @@ -651,10 +641,7 @@ void SwModule::ExecOther(SfxRequest& rReq) } } -/*-------------------------------------------------------------------- - Description: Catch notifications - --------------------------------------------------------------------*/ - +// Catch notifications // Catch hint for DocInfo void SwModule::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& rHint ) diff --git a/sw/source/ui/app/applab.cxx b/sw/source/ui/app/applab.cxx index 7b751486aa95..d840bf84824e 100644 --- a/sw/source/ui/app/applab.cxx +++ b/sw/source/ui/app/applab.cxx @@ -401,5 +401,4 @@ void SwModule::InsertLab(SfxRequest& rReq, sal_Bool bLabel) delete pNewDBMgr; } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/appopt.cxx b/sw/source/ui/app/appopt.cxx index eb41720a33fa..d16452fa5f77 100644 --- a/sw/source/ui/app/appopt.cxx +++ b/sw/source/ui/app/appopt.cxx @@ -95,9 +95,7 @@ SfxItemSet* SwModule::CreateItemSet( sal_uInt16 nId ) pAppView = 0; // with View, there's nothing to win here } - /********************************************************************/ - /* Options/Edit */ - /********************************************************************/ + // Options/Edit SfxItemSet* pRet = new SfxItemSet (GetPool(), FN_PARAM_DOCDISP, FN_PARAM_ELEM, SID_PRINTPREVIEW, SID_PRINTPREVIEW, SID_ATTR_GRID_OPTIONS, SID_ATTR_GRID_OPTIONS, @@ -260,9 +258,8 @@ void SwModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ) SfxBindings *pBindings = pAppView ? &pAppView->GetViewFrame()->GetBindings() : NULL; - /*--------------------------------------------------------------------- - Interpret the page Documentview - -----------------------------------------------------------------------*/ + + // Interpret the page Documentview if( SFX_ITEM_SET == rSet.GetItemState( FN_PARAM_DOCDISP, sal_False, &pItem )) { const SwDocDisplayItem* pDocDispItem = (const SwDocDisplayItem*)pItem; @@ -288,10 +285,7 @@ void SwModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ) } } - /*--------------------------------------------------------------------- - Elements - interpret Item - -----------------------------------------------------------------------*/ - + // Elements - interpret Item if( SFX_ITEM_SET == rSet.GetItemState( FN_PARAM_ELEM, sal_False, &pItem ) ) { const SwElemItem* pElemItem = (const SwElemItem*)pItem; @@ -343,10 +337,7 @@ void SwModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ) } } - - /*------------------------------------------------ - Background only in WebDialog - --------------------------------------------------*/ + // Background only in WebDialog if(SFX_ITEM_SET == rSet.GetItemState(RES_BACKGROUND)) { const SvxBrushItem& rBrushItem = (const SvxBrushItem&)rSet.Get( @@ -354,10 +345,7 @@ void SwModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ) aViewOpt.SetRetoucheColor( rBrushItem.GetColor() ); } - /*-------------------------------------------------------------------- - Interpret page Grid Settings - ----------------------------------------------------------------------*/ - + // Interpret page Grid Settings if( SFX_ITEM_SET == rSet.GetItemState( SID_ATTR_GRID_OPTIONS, sal_False, &pItem )) { const SvxGridItem* pGridItem = (const SvxGridItem*)pItem; @@ -384,10 +372,7 @@ void SwModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ) } } - /*-------------------------------------------------------------------- - Interpret Writer Printer Options - ----------------------------------------------------------------------*/ - + // Interpret Writer Printer Options if( SFX_ITEM_SET == rSet.GetItemState( FN_PARAM_ADDPRINTER, sal_False, &pItem )) { SwPrintOptions* pOpt = GetPrtOptions(!bTextDialog); @@ -576,5 +561,4 @@ SfxTabPage* SwModule::CreateTabPage( sal_uInt16 nId, Window* pParent, const SfxI return pRet; } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/docsh.cxx b/sw/source/ui/app/docsh.cxx index 08492512353c..92f10005545c 100644 --- a/sw/source/ui/app/docsh.cxx +++ b/sw/source/ui/app/docsh.cxx @@ -123,14 +123,9 @@ SFX_IMPL_INTERFACE( SwDocShell, SfxObjectShell, SW_RES(0) ) TYPEINIT2(SwDocShell, SfxObjectShell, SfxListener); -//------------------------------------------------------------------------- SFX_IMPL_OBJECTFACTORY(SwDocShell, SvGlobalName(SO3_SW_CLASSID), SFXOBJECTSHELL_STD_NORMAL|SFXOBJECTSHELL_HASMENU, "swriter" ) -/*-------------------------------------------------------------------- - Description: Prepare loading - --------------------------------------------------------------------*/ - - +// Prepare loading Reader* SwDocShell::StartConvertFrom(SfxMedium& rMedium, SwReader** ppRdr, SwCrsrShell *pCrsrShell, SwPaM* pPaM ) @@ -219,10 +214,7 @@ Reader* SwDocShell::StartConvertFrom(SfxMedium& rMedium, SwReader** ppRdr, return pRead; } -/*-------------------------------------------------------------------- - Description: Loading - --------------------------------------------------------------------*/ - +// Loading sal_Bool SwDocShell::ConvertFrom( SfxMedium& rMedium ) { RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::ConvertFrom" ); @@ -279,11 +271,7 @@ sal_Bool SwDocShell::ConvertFrom( SfxMedium& rMedium ) return bOk; } -/*-------------------------------------------------------------------- - Description: Saving the Default-Format, Stg present - --------------------------------------------------------------------*/ - - +// Saving the Default-Format, Stg present sal_Bool SwDocShell::Save() { RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::Save" ); @@ -372,11 +360,7 @@ sal_Bool SwDocShell::Save() return !IsError( nErr ); } -/*-------------------------------------------------------------------- - Description: Save using the Defaultformat - --------------------------------------------------------------------*/ - - +// Save using the Defaultformat sal_Bool SwDocShell::SaveAs( SfxMedium& rMedium ) { RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::SaveAs" ); @@ -504,9 +488,7 @@ sal_Bool SwDocShell::SaveAs( SfxMedium& rMedium ) return !IsError( nErr ); } -/*-------------------------------------------------------------------- - Description: Save all Formats - --------------------------------------------------------------------*/ +// Save all Formats static SwSrcView* lcl_GetSourceView( SwDocShell* pSh ) { // are we in SourceView? @@ -748,16 +730,9 @@ sal_Bool SwDocShell::ConvertTo( SfxMedium& rMedium ) return !IsError( nErrno ); } -/*-------------------------------------------------------------------- - Description: Hands off - --------------------------------------------------------------------*/ - - -/*-------------------------------------------------------------------- - Description: ??? do not yet activate, must deliver TRUE - --------------------------------------------------------------------*/ - +// Hands off +// do not yet activate, must deliver TRUE sal_Bool SwDocShell::SaveCompleted( const uno::Reference < embed::XStorage >& xStor ) { RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::SaveCompleted" ); @@ -793,10 +768,7 @@ sal_Bool SwDocShell::SaveCompleted( const uno::Reference < embed::XStorage >& xS return bRet; } -/*-------------------------------------------------------------------- - Description: Draw()-Overload for OLE2 (Sfx) - --------------------------------------------------------------------*/ - +// Draw()-Overload for OLE2 (Sfx) void SwDocShell::Draw( OutputDevice* pDev, const JobSetup& rSetup, sal_uInt16 nAspect ) { @@ -1067,11 +1039,7 @@ void SwDocShell::GetState(SfxItemSet& rSet) } } -/*-------------------------------------------------------------------- - Description: OLE-Hdls - --------------------------------------------------------------------*/ - - +// OLE-Hdls IMPL_LINK( SwDocShell, Ole2ModifiedHdl, void *, p ) { // the Status is handed over from Doc (see doc.cxx) @@ -1083,11 +1051,7 @@ IMPL_LINK( SwDocShell, Ole2ModifiedHdl, void *, p ) return 0; } -/*-------------------------------------------------------------------- - Description: return Pool here, because virtual - --------------------------------------------------------------------*/ - - +// return Pool here, because virtual SfxStyleSheetBasePool* SwDocShell::GetStyleSheetPool() { return mxBasePool.get(); @@ -1333,6 +1297,4 @@ bool SwDocShell::GetProtectionHash( /*out*/ ::com::sun::star::uno::Sequence< sal return bRes; } - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/docsh2.cxx b/sw/source/ui/app/docsh2.cxx index b10260b8be47..b454fb304553 100644 --- a/sw/source/ui/app/docsh2.cxx +++ b/sw/source/ui/app/docsh2.cxx @@ -123,10 +123,7 @@ using ::rtl::OUString; using namespace ::sfx2; extern bool FindPhyStyle( SwDoc& , const String& , SfxStyleFamily ); -/*-------------------------------------------------------------------- - Description: create DocInfo (virtual) - --------------------------------------------------------------------*/ - +// create DocInfo (virtual) SfxDocumentInfoDialog* SwDocShell::CreateDocumentInfoDialog( Window *pParent, const SfxItemSet &rSet) { @@ -229,10 +226,7 @@ static void lcl_processCompatibleSfxHint( const uno::Reference< script::vba::XVB } } -/*-------------------------------------------------------------------- - Description: Notification on DocInfo changes - --------------------------------------------------------------------*/ - +// Notification on DocInfo changes void SwDocShell::Notify( SfxBroadcaster&, const SfxHint& rHint ) { if( !pDoc ) @@ -310,10 +304,7 @@ void SwDocShell::Notify( SfxBroadcaster&, const SfxHint& rHint ) } } -/*-------------------------------------------------------------------- - Description: Notification Close Doc - --------------------------------------------------------------------*/ - +// Notification Close Doc sal_uInt16 SwDocShell::PrepareClose( sal_Bool bUI, sal_Bool bForBrowsing ) { sal_uInt16 nRet = SfxObjectShell::PrepareClose( bUI, bForBrowsing ); @@ -334,10 +325,7 @@ sal_uInt16 SwDocShell::PrepareClose( sal_Bool bUI, sal_Bool bForBrowsing ) return nRet; } -/*-------------------------------------------------------------------- - Description: Organizer - --------------------------------------------------------------------*/ - +// Organizer sal_Bool SwDocShell::Insert( SfxObjectShell &rSource, sal_uInt16 nSourceIdx1, // SourcePool: uppermost content level (templates/macros) sal_uInt16 nSourceIdx2, // Index in the content @@ -548,10 +536,7 @@ sal_Bool SwDocShell::Insert( SfxObjectShell &rSource, return bRet; } -/*-------------------------------------------------------------------- - Description: template Remove - --------------------------------------------------------------------*/ - +// template Remove sal_Bool SwDocShell::Remove(sal_uInt16 nIdx1, // see Insert sal_uInt16 nIdx2, sal_uInt16 nIdx3) @@ -799,7 +784,6 @@ void SwDocShell::Execute(SfxRequest& rReq) while( pFlt ) { // --> OD #i117339# -// if( pFlt && pFlt->IsAllowedAsTemplate() ) if( pFlt && pFlt->IsAllowedAsTemplate() && ( pFlt->GetUserData() == "CXML" || pFlt->GetUserData() == "CXMLV" ) ) @@ -1772,9 +1756,7 @@ sal_uLong SwDocShell::LoadStylesFromFile( const String& rURL, return nErr; } -/*-------------------------------------------------------------------- - Get a client for an embedded object if possible. - --------------------------------------------------------------------*/ +// Get a client for an embedded object if possible. SfxInPlaceClient* SwDocShell::GetIPClient( const ::svt::EmbeddedObjectRef& xObjRef ) { SfxInPlaceClient* pResult = NULL; diff --git a/sw/source/ui/app/docshdrw.cxx b/sw/source/ui/app/docshdrw.cxx index 5979c0fa6d7d..c9319cb5579d 100644 --- a/sw/source/ui/app/docshdrw.cxx +++ b/sw/source/ui/app/docshdrw.cxx @@ -31,11 +31,7 @@ using namespace ::com::sun::star; -/*-------------------------------------------------------------------- - Description: Load Document - --------------------------------------------------------------------*/ - - +// Load Document void SwDocShell::InitDraw() { SdrModel *pDrDoc = pDoc->GetDrawModel(); @@ -56,6 +52,4 @@ void SwDocShell::InitDraw() PutItem( SvxColorListItem( XColorList::GetStdColorList(), SID_COLOR_TABLE )); } - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/docshini.cxx b/sw/source/ui/app/docshini.cxx index 55ece7305d4c..108a4b98b60b 100644 --- a/sw/source/ui/app/docshini.cxx +++ b/sw/source/ui/app/docshini.cxx @@ -94,13 +94,7 @@ using namespace ::com::sun::star::uno; using namespace ::com::sun::star; using ::rtl::OUString; - - -/*-------------------------------------------------------------------- - Description: Load Document - --------------------------------------------------------------------*/ - - +// Load Document sal_Bool SwDocShell::InitNew( const uno::Reference < embed::XStorage >& xStor ) { RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::InitNew" ); @@ -335,11 +329,7 @@ sal_Bool SwDocShell::InitNew( const uno::Reference < embed::XStorage >& xStor ) return bRet; } -/*-------------------------------------------------------------------- - Description: Ctor with SfxCreateMode ????? - --------------------------------------------------------------------*/ - - +// Ctor with SfxCreateMode ????? SwDocShell::SwDocShell( SfxObjectCreateMode eMode ) : SfxObjectShell ( eMode ), pDoc(0), @@ -354,11 +344,7 @@ SwDocShell::SwDocShell( SfxObjectCreateMode eMode ) : Init_Impl(); } -/*-------------------------------------------------------------------- - Description: Ctor / Dtor - --------------------------------------------------------------------*/ - - +// Ctor / Dtor SwDocShell::SwDocShell( const sal_uInt64 i_nSfxCreationFlags ) : SfxObjectShell ( i_nSfxCreationFlags ), pDoc(0), @@ -373,11 +359,7 @@ SwDocShell::SwDocShell( const sal_uInt64 i_nSfxCreationFlags ) : Init_Impl(); } -/*-------------------------------------------------------------------- - Description: Ctor / Dtor - --------------------------------------------------------------------*/ - - +// Ctor / Dtor SwDocShell::SwDocShell( SwDoc *pD, SfxObjectCreateMode eMode ): SfxObjectShell ( eMode ), pDoc(pD), @@ -392,12 +374,8 @@ SwDocShell::SwDocShell( SwDoc *pD, SfxObjectCreateMode eMode ): Init_Impl(); } -/*-------------------------------------------------------------------- - Description: Dtor - --------------------------------------------------------------------*/ - - - SwDocShell::~SwDocShell() +// Dtor +SwDocShell::~SwDocShell() { // disable chart related objects now because in ~SwDoc it may be to late for this if( pDoc ) @@ -431,11 +409,8 @@ void SwDocShell::Init_Impl() // set map unit to twip SetMapUnit( MAP_TWIP ); } -/*-------------------------------------------------------------------- - Description: AddLink - --------------------------------------------------------------------*/ - +// AddLink void SwDocShell::AddLink() { if( !pDoc ) @@ -457,11 +432,7 @@ void SwDocShell::AddLink() pDoc->SetOle2Link(LINK(this, SwDocShell, Ole2ModifiedHdl)); } -/*-------------------------------------------------------------------- - Description: create new FontList Change Printer - --------------------------------------------------------------------*/ - - +// create new FontList Change Printer void SwDocShell::UpdateFontList() { if(!bInUpdateFontList) @@ -478,11 +449,7 @@ void SwDocShell::UpdateFontList() } } -/*-------------------------------------------------------------------- - Description: RemoveLink - --------------------------------------------------------------------*/ - - +// RemoveLink void SwDocShell::RemoveLink() { // disconnect Uno-Object @@ -517,11 +484,7 @@ void SwDocShell::ReactivateModel() ((SwXTextDocument*)xDoc.get())->Reactivate(this); } -/*-------------------------------------------------------------------- - Description: Load, Default-Format - --------------------------------------------------------------------*/ - - +// Load, Default-Format sal_Bool SwDocShell::Load( SfxMedium& rMedium ) { RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::Load" ); @@ -536,74 +499,72 @@ sal_Bool SwDocShell::Load( SfxMedium& rMedium ) // Loading // for MD - OSL_ENSURE( !mxBasePool.is(), "who hasn't destroyed their Pool?" ); - mxBasePool = new SwDocStyleSheetPool( *pDoc, SFX_CREATE_MODE_ORGANIZER == GetCreateMode() ); - if(GetCreateMode() != SFX_CREATE_MODE_ORGANIZER) - { - SFX_ITEMSET_ARG( rMedium.GetItemSet(), pUpdateDocItem, SfxUInt16Item, SID_UPDATEDOCMODE, sal_False); - nUpdateDocMode = pUpdateDocItem ? pUpdateDocItem->GetValue() : document::UpdateDocMode::NO_UPDATE; - } + OSL_ENSURE( !mxBasePool.is(), "who hasn't destroyed their Pool?" ); + mxBasePool = new SwDocStyleSheetPool( *pDoc, SFX_CREATE_MODE_ORGANIZER == GetCreateMode() ); + if(GetCreateMode() != SFX_CREATE_MODE_ORGANIZER) + { + SFX_ITEMSET_ARG( rMedium.GetItemSet(), pUpdateDocItem, SfxUInt16Item, SID_UPDATEDOCMODE, sal_False); + nUpdateDocMode = pUpdateDocItem ? pUpdateDocItem->GetValue() : document::UpdateDocMode::NO_UPDATE; + } SwWait aWait( *this, sal_True ); sal_uInt32 nErr = ERR_SWG_READ_ERROR; switch( GetCreateMode() ) { - - case SFX_CREATE_MODE_ORGANIZER: - { - if( ReadXML ) + case SFX_CREATE_MODE_ORGANIZER: { - ReadXML->SetOrganizerMode( sal_True ); - SwReader aRdr( rMedium, aEmptyStr, pDoc ); - nErr = aRdr.Read( *ReadXML ); - ReadXML->SetOrganizerMode( sal_False ); + if( ReadXML ) + { + ReadXML->SetOrganizerMode( sal_True ); + SwReader aRdr( rMedium, aEmptyStr, pDoc ); + nErr = aRdr.Read( *ReadXML ); + ReadXML->SetOrganizerMode( sal_False ); + } } - } - break; + break; - case SFX_CREATE_MODE_INTERNAL: - case SFX_CREATE_MODE_EMBEDDED: - { - // for MWERKS (Mac-Compiler): can't cast autonomously - SwTransferable::InitOle( this, *pDoc ); - } - // suppress SfxProgress, when we are Embedded - SW_MOD()->SetEmbeddedLoadSave( sal_True ); - // no break; + case SFX_CREATE_MODE_INTERNAL: + case SFX_CREATE_MODE_EMBEDDED: + { + // for MWERKS (Mac-Compiler): can't cast autonomously + SwTransferable::InitOle( this, *pDoc ); + } + // suppress SfxProgress, when we are Embedded + SW_MOD()->SetEmbeddedLoadSave( sal_True ); + // no break; - case SFX_CREATE_MODE_STANDARD: - case SFX_CREATE_MODE_PREVIEW: - { - Reader *pReader = ReadXML; - if( pReader ) + case SFX_CREATE_MODE_STANDARD: + case SFX_CREATE_MODE_PREVIEW: { - // set Doc's DocInfo at DocShell-Medium - RTL_LOGFILE_CONTEXT_TRACE( aLog, "before ReadDocInfo" ); - SwReader aRdr( rMedium, aEmptyStr, pDoc ); - RTL_LOGFILE_CONTEXT_TRACE( aLog, "before Read" ); - nErr = aRdr.Read( *pReader ); - RTL_LOGFILE_CONTEXT_TRACE( aLog, "after Read" ); - - // If a XML document is loaded, the global doc/web doc - // flags have to be set, because they aren't loaded - // by this formats. - if( ISA( SwWebDocShell ) ) - { - if( !pDoc->get(IDocumentSettingAccess::HTML_MODE) ) - pDoc->set(IDocumentSettingAccess::HTML_MODE, true); - } - if( ISA( SwGlobalDocShell ) ) + Reader *pReader = ReadXML; + if( pReader ) { - if( !pDoc->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) ) - pDoc->set(IDocumentSettingAccess::GLOBAL_DOCUMENT, true); + // set Doc's DocInfo at DocShell-Medium + RTL_LOGFILE_CONTEXT_TRACE( aLog, "before ReadDocInfo" ); + SwReader aRdr( rMedium, aEmptyStr, pDoc ); + RTL_LOGFILE_CONTEXT_TRACE( aLog, "before Read" ); + nErr = aRdr.Read( *pReader ); + RTL_LOGFILE_CONTEXT_TRACE( aLog, "after Read" ); + + // If a XML document is loaded, the global doc/web doc + // flags have to be set, because they aren't loaded + // by this formats. + if( ISA( SwWebDocShell ) ) + { + if( !pDoc->get(IDocumentSettingAccess::HTML_MODE) ) + pDoc->set(IDocumentSettingAccess::HTML_MODE, true); + } + if( ISA( SwGlobalDocShell ) ) + { + if( !pDoc->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) ) + pDoc->set(IDocumentSettingAccess::GLOBAL_DOCUMENT, true); + } } } - } - break; - - default: - OSL_ENSURE( !this, "Load: new CreateMode?" ); + break; + default: + OSL_ENSURE( !this, "Load: new CreateMode?" ); } UpdateFontList(); diff --git a/sw/source/ui/app/docst.cxx b/sw/source/ui/app/docst.cxx index d158bb9f282f..a769e3a4d52f 100644 --- a/sw/source/ui/app/docst.cxx +++ b/sw/source/ui/app/docst.cxx @@ -253,12 +253,7 @@ void SwDocShell::StateStyleSheet(SfxItemSet& rSet, SwWrtShell* pSh) } } - -/*-------------------------------------------------------------------- - Description: evaluate StyleSheet-Requests - --------------------------------------------------------------------*/ - - +// evaluate StyleSheet-Requests void SwDocShell::ExecStyleSheet( SfxRequest& rReq ) { sal_uInt16 nSlot = rReq.GetSlot(); @@ -599,7 +594,7 @@ IMPL_LINK_NOARG(ApplyStyle, ApplyHdl) m_xBasePool->Broadcast( SfxStyleSheetHint( SFX_STYLESHEET_CREATED, *m_xTmp.get() ) ); pDoc->SetModified(); - if( !m_bModified ) // Bug 57028 + if( !m_bModified ) { pDoc->GetIDocumentUndoRedo().SetUndoNoResetModified(); } @@ -609,11 +604,7 @@ IMPL_LINK_NOARG(ApplyStyle, ApplyHdl) return m_nRet; } -/*-------------------------------------------------------------------- - Description: Edit - --------------------------------------------------------------------*/ - - +// Edit sal_uInt16 SwDocShell::Edit( const String &rName, const String &rParent, sal_uInt16 nFamily, sal_uInt16 nMask, sal_Bool bNew, sal_uInt16 nPageId, SwWrtShell* pActShell, sal_Bool bBasic ) @@ -846,11 +837,7 @@ sal_uInt16 SwDocShell::Edit( const String &rName, const String &rParent, sal_uIn return nRet; } -/*-------------------------------------------------------------------- - Description: Delete - --------------------------------------------------------------------*/ - - +// Delete sal_uInt16 SwDocShell::Delete(const String &rName, sal_uInt16 nFamily) { SfxStyleSheetBase *pStyle = mxBasePool->Find(rName, (SfxStyleFamily)nFamily); @@ -886,11 +873,7 @@ sal_uInt16 SwDocShell::Hide(const String &rName, sal_uInt16 nFamily, bool bHidde return sal_False; } -/*-------------------------------------------------------------------- - Description: apply template - --------------------------------------------------------------------*/ - - +// apply template sal_uInt16 SwDocShell::ApplyStyles(const String &rName, sal_uInt16 nFamily, SwWrtShell* pShell, sal_uInt16 nMode ) { @@ -953,12 +936,7 @@ sal_uInt16 SwDocShell::ApplyStyles(const String &rName, sal_uInt16 nFamily, return nFamily; } -/*-------------------------------------------------------------------- - Description: start watering-can - --------------------------------------------------------------------*/ - - - +// start watering-can sal_uInt16 SwDocShell::DoWaterCan(const String &rName, sal_uInt16 nFamily) { OSL_ENSURE(GetWrtShell(), "No Shell, no Styles"); @@ -1012,11 +990,7 @@ sal_uInt16 SwDocShell::DoWaterCan(const String &rName, sal_uInt16 nFamily) return nFamily; } -/*-------------------------------------------------------------------- - Description: update template - --------------------------------------------------------------------*/ - - +// update template sal_uInt16 SwDocShell::UpdateStyle(const String &rName, sal_uInt16 nFamily, SwWrtShell* pShell) { SwWrtShell* pCurrWrtShell = pShell ? pShell : GetWrtShell(); @@ -1077,7 +1051,7 @@ sal_uInt16 SwDocShell::UpdateStyle(const String &rName, sal_uInt16 nFamily, SwWr { pCurrWrtShell->StartAllAction(); pCurrWrtShell->FillByEx(pChar); - // also apply template to remove hard set attributes + // also apply template to remove hard set attributes pCurrWrtShell->EndAllAction(); } @@ -1101,11 +1075,7 @@ sal_uInt16 SwDocShell::UpdateStyle(const String &rName, sal_uInt16 nFamily, SwWr return nFamily; } -/*-------------------------------------------------------------------- - Description: NewByExample - --------------------------------------------------------------------*/ - - +// NewByExample sal_uInt16 SwDocShell::MakeByExample( const String &rName, sal_uInt16 nFamily, sal_uInt16 nMask, SwWrtShell* pShell ) { @@ -1141,24 +1111,24 @@ sal_uInt16 SwDocShell::MakeByExample( const String &rName, sal_uInt16 nFamily, sal_uInt16 nId = pColl->GetPoolFmtId() & 0x87ff; switch( nMask & 0x0fff ) { - case SWSTYLEBIT_TEXT: - nId |= COLL_TEXT_BITS; - break; - case SWSTYLEBIT_CHAPTER: - nId |= COLL_DOC_BITS; - break; - case SWSTYLEBIT_LIST: - nId |= COLL_LISTS_BITS; - break; - case SWSTYLEBIT_IDX: - nId |= COLL_REGISTER_BITS; - break; - case SWSTYLEBIT_EXTRA: - nId |= COLL_EXTRA_BITS; - break; - case SWSTYLEBIT_HTML: - nId |= COLL_HTML_BITS; - break; + case SWSTYLEBIT_TEXT: + nId |= COLL_TEXT_BITS; + break; + case SWSTYLEBIT_CHAPTER: + nId |= COLL_DOC_BITS; + break; + case SWSTYLEBIT_LIST: + nId |= COLL_LISTS_BITS; + break; + case SWSTYLEBIT_IDX: + nId |= COLL_REGISTER_BITS; + break; + case SWSTYLEBIT_EXTRA: + nId |= COLL_EXTRA_BITS; + break; + case SWSTYLEBIT_HTML: + nId |= COLL_HTML_BITS; + break; } pColl->SetPoolFmtId(nId); @@ -1318,6 +1288,4 @@ Bitmap SwDocShell::GetStyleFamilyBitmap( SfxStyleFamily eFamily ) return SfxObjectShell::GetStyleFamilyBitmap( eFamily ); } - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/docstyle.cxx b/sw/source/ui/app/docstyle.cxx index a2c124e51485..dc36e110d3d2 100644 --- a/sw/source/ui/app/docstyle.cxx +++ b/sw/source/ui/app/docstyle.cxx @@ -104,11 +104,8 @@ SwImplShellAction::~SwImplShellAction() } } -/*-------------------------------------------------------------------- - Description: find/create SwCharFormate - possibly fill Style - --------------------------------------------------------------------*/ - +// find/create SwCharFormate +// possibly fill Style static SwCharFmt* lcl_FindCharFmt( SwDoc& rDoc, const String& rName, SwDocStyleSheet* pStyle = 0, @@ -149,12 +146,8 @@ static SwCharFmt* lcl_FindCharFmt( SwDoc& rDoc, return pFmt; } - -/*-------------------------------------------------------------------- - Description: find/create ParaFormats - fill Style - --------------------------------------------------------------------*/ - +// find/create ParaFormats +// fill Style static SwTxtFmtColl* lcl_FindParaFmt( SwDoc& rDoc, const String& rName, SwDocStyleSheet* pStyle = 0, @@ -192,12 +185,7 @@ static SwTxtFmtColl* lcl_FindParaFmt( SwDoc& rDoc, return pColl; } - -/*-------------------------------------------------------------------- - Description: Border formats - --------------------------------------------------------------------*/ - - +// Border formats static SwFrmFmt* lcl_FindFrmFmt( SwDoc& rDoc, const String& rName, SwDocStyleSheet* pStyle = 0, @@ -231,11 +219,7 @@ static SwFrmFmt* lcl_FindFrmFmt( SwDoc& rDoc, return pFmt; } -/*-------------------------------------------------------------------- - Description: Page descriptors - --------------------------------------------------------------------*/ - - +// Page descriptors static const SwPageDesc* lcl_FindPageDesc( SwDoc& rDoc, const String& rName, SwDocStyleSheet* pStyle = 0, @@ -344,12 +328,7 @@ bool FindPhyStyle( SwDoc& rDoc, const String& rName, SfxStyleFamily eFam ) return false; } - -/*-------------------------------------------------------------------- - Description: Add Strings to the list of templates - --------------------------------------------------------------------*/ - - +// Add Strings to the list of templates void SwPoolFmtList::Append( char cChar, const String& rStr ) { String aStr = rtl::OUString(cChar); @@ -360,21 +339,14 @@ void SwPoolFmtList::Append( char cChar, const String& rStr ) push_back(aStr); } -/*-------------------------------------------------------------------- - Description: Erase the list completely - --------------------------------------------------------------------*/ - - +// Erase the list completely void SwPoolFmtList::Erase() { clear(); } -/*-------------------------------------------------------------------- - Description: UI-sided implementation of StyleSheets - uses the Core-Engine - --------------------------------------------------------------------*/ - +// UI-sided implementation of StyleSheets +// uses the Core-Engine SwDocStyleSheet::SwDocStyleSheet( SwDoc& rDocument, const String& rName, SwDocStyleSheetPool* _rPool, @@ -433,11 +405,7 @@ SwDocStyleSheet::SwDocStyleSheet( const SwDocStyleSheet& rOrg) : { } -/*-------------------------------------------------------------------- - Description: Reset - --------------------------------------------------------------------*/ - - +// Reset void SwDocStyleSheet::Reset() { aName.Erase(); @@ -446,10 +414,7 @@ void SwDocStyleSheet::Reset() SetPhysical(sal_False); } -/*-------------------------------------------------------------------- - Description: virtual methods - --------------------------------------------------------------------*/ - +// virtual methods void SwDocStyleSheet::SetHidden( sal_Bool bValue ) { bool bChg = false; @@ -608,11 +573,7 @@ const String& SwDocStyleSheet::GetParent() const return aParent; } -/*-------------------------------------------------------------------- - Description: Follower - --------------------------------------------------------------------*/ - - +// Follower const String& SwDocStyleSheet::GetFollow() const { if( !bPhysical ) @@ -623,11 +584,7 @@ const String& SwDocStyleSheet::GetFollow() const return aFollow; } -/*-------------------------------------------------------------------- - Description: What Linkage is possible - --------------------------------------------------------------------*/ - - +// What Linkage is possible bool SwDocStyleSheet::HasFollowSupport() const { switch(nFamily) @@ -643,11 +600,7 @@ bool SwDocStyleSheet::HasFollowSupport() const return false; } -/*-------------------------------------------------------------------- - Description: Parent ? - --------------------------------------------------------------------*/ - - +// Parent ? bool SwDocStyleSheet::HasParentSupport() const { bool bRet = false; @@ -675,9 +628,7 @@ bool SwDocStyleSheet::HasClearParentSupport() const return bRet; } -/*-------------------------------------------------------------------- - Description: determine textual description - --------------------------------------------------------------------*/ +// determine textual description String SwDocStyleSheet::GetDescription(SfxMapUnit eUnit) { IntlWrapper aIntlWrapper( SvtSysLocale().GetLanguageTag() ); @@ -849,11 +800,7 @@ String SwDocStyleSheet::GetDescription() return GetDescription(SFX_MAPUNIT_CM); } -/*-------------------------------------------------------------------- - Description: Set names - --------------------------------------------------------------------*/ - - +// Set names bool SwDocStyleSheet::SetName( const String& rStr) { if( !rStr.Len() ) @@ -974,11 +921,7 @@ bool SwDocStyleSheet::SetName( const String& rStr) return true; } -/*-------------------------------------------------------------------- - Description: hierarchy of deduction - --------------------------------------------------------------------*/ - - +// hierarchy of deduction bool SwDocStyleSheet::SetParent( const String& rStr) { SwFmt* pFmt = 0, *pParent = 0; @@ -1029,11 +972,7 @@ bool SwDocStyleSheet::SetParent( const String& rStr) return bRet; } -/*-------------------------------------------------------------------- - Description: Set Follower - --------------------------------------------------------------------*/ - - +// Set Follower bool SwDocStyleSheet::SetFollow( const String& rStr) { if( rStr.Len() && !SfxStyleSheetBase::SetFollow( rStr )) @@ -1086,10 +1025,7 @@ bool SwDocStyleSheet::SetFollow( const String& rStr) return true; } -/*-------------------------------------------------------------------- - Description: extract ItemSet to Name and Family, Mask - --------------------------------------------------------------------*/ - +// extract ItemSet to Name and Family, Mask SfxItemSet& SwDocStyleSheet::GetItemSet() { if(!bPhysical) @@ -1602,10 +1538,7 @@ static void lcl_DeleteInfoStyles( sal_uInt16 nFamily, std::vector<void*>& rArr, } } -/*-------------------------------------------------------------------- - Description: determine the format - --------------------------------------------------------------------*/ - +// determine the format sal_Bool SwDocStyleSheet::FillStyleSheet( FillStyleType eFType ) { sal_Bool bRet = sal_False; @@ -1791,11 +1724,7 @@ sal_Bool SwDocStyleSheet::FillStyleSheet( FillStyleType eFType ) return bRet; } -/*-------------------------------------------------------------------- - Description: Create new format in Core - --------------------------------------------------------------------*/ - - +// Create new format in Core void SwDocStyleSheet::Create() { switch(nFamily) @@ -1914,11 +1843,7 @@ void SwDocStyleSheet::PresetNameAndFamily(const String& rName) aName.Erase( 0, 1 ); } -/*-------------------------------------------------------------------- - Description: Is the format physically present yet - --------------------------------------------------------------------*/ - - +// Is the format physically present yet void SwDocStyleSheet::SetPhysical(sal_Bool bPhys) { bPhysical = bPhys; @@ -2101,10 +2026,7 @@ void SwDocStyleSheet::SetHelpId( const OUString& r, sal_uLong nId ) } } -/*-------------------------------------------------------------------- - Description: methods for DocStyleSheetPool - --------------------------------------------------------------------*/ - +// methods for DocStyleSheetPool SwDocStyleSheetPool::SwDocStyleSheetPool( SwDoc& rDocument, sal_Bool bOrg ) : SfxStyleSheetBasePool( rDocument.GetAttrPool() ) , mxStyleSheet( new SwDocStyleSheet( rDocument, aEmptyStr, this, SFX_STYLE_FAMILY_CHAR, 0 ) ) @@ -2325,7 +2247,6 @@ void SwDocStyleSheetPool::Remove( SfxStyleSheetBase* pStyle) } - bool SwDocStyleSheetPool::SetParent( SfxStyleFamily eFam, const String &rStyle, const String &rParent ) { @@ -2563,7 +2484,6 @@ SfxStyleSheetBase* SwStyleSheetIterator::First() } // PoolFormate - // if( bAll ) { if( !rDoc.get(IDocumentSettingAccess::HTML_MODE) ) @@ -2778,7 +2698,6 @@ SfxStyleSheetBase* SwStyleSheetIterator::First() } // PoolFormate - // if ( bAll ) AppendStyleList(SwStyleNameMapper::GetFrmFmtUINameArray(), bIsSearchUsed, bSearchHidden, bOnlyHidden, nsSwGetPoolIdFromName::GET_POOLID_FRMFMT, cFRAME); @@ -2966,5 +2885,4 @@ void SwStyleSheetIterator::Notify( SfxBroadcaster&, const SfxHint& rHint ) } } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/error.src b/sw/source/ui/app/error.src index cb22c8169438..b2a2433de078 100644 --- a/sw/source/ui/app/error.src +++ b/sw/source/ui/app/error.src @@ -24,10 +24,6 @@ #include "swerror.h" #include "comcore.hrc" // MS: Why are there resources at the Core-Side now -/*-------------------------------------------------------------------- - Description: Strings - --------------------------------------------------------------------*/ - String STR_COMCORE_READERROR { Text [ en-US ] = "Read-Error" ; @@ -36,9 +32,8 @@ String STR_COMCORE_CANT_SHOW { Text [ en-US ] = "Graphic cannot be displayed." ; }; -/*-------------------------------------------------------------------- - Description: Boxes - --------------------------------------------------------------------*/ + + InfoBox ERR_CLPBRD_WRITE { Message [ en-US ] = "Error while copying to the clipboard." ; @@ -145,7 +140,8 @@ Resource RID_SW_ERRHDL { Text [ en-US ] = "The structure of a linked table cannot be modified." ; }; - // -------------------- Warnings ----------------------------------- + + String WARN_CODE ( ERRCODE_CLASS_READ , WARN_SWG_NO_DRAWINGS ) { Text [ en-US ] = "No drawings could be read." ; diff --git a/sw/source/ui/app/mainwn.cxx b/sw/source/ui/app/mainwn.cxx index 2a5385b83beb..304862f8da62 100644 --- a/sw/source/ui/app/mainwn.cxx +++ b/sw/source/ui/app/mainwn.cxx @@ -143,5 +143,4 @@ void RescheduleProgress( SwDocShell *pDocShell ) } } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/swmodul1.cxx b/sw/source/ui/app/swmodul1.cxx index fba5f71cfb71..024aafd614d0 100644 --- a/sw/source/ui/app/swmodul1.cxx +++ b/sw/source/ui/app/swmodul1.cxx @@ -139,11 +139,7 @@ SwView* SwModule::GetNextView(SwView* pView) return pNView; } -/*------------------------------------------------------------------------ - Description: New Master for the settings is set; this affects the - current view and all following. -------------------------------------------------------------------------*/ - +// New Master for the settings is set; this affects the current view and all following. void SwModule::ApplyUsrPref(const SwViewOption &rUsrPref, SwView* pActView, sal_uInt16 nDest ) { @@ -283,10 +279,7 @@ void SwModule::ApplyRulerMetric( FieldUnit eMetric, sal_Bool bHorizontal, sal_Bo } } -/*------------------------------------------------- -set the usrpref 's char unit attribute and set ruler -'s unit as char if the "apply char unit" is checked ---------------------------------------------------*/ +//set the usrpref 's char unit attribute and set rulers unit as char if the "apply char unit" is checked void SwModule::ApplyUserCharUnit(sal_Bool bApplyChar, sal_Bool bWeb) { SwMasterUsrPref* pPref; @@ -521,10 +514,7 @@ void SwModule::GetDeletedAuthorAttr(sal_uInt16 nAuthor, SfxItemSet &rSet) lcl_FillAuthorAttr(nAuthor, rSet, pModuleConfig->GetDeletedAuthorAttr()); } -/*-------------------------------------------------------------------- - Description: For future extension: - --------------------------------------------------------------------*/ - +// For future extension: void SwModule::GetFormatAuthorAttr( sal_uInt16 nAuthor, SfxItemSet &rSet ) { lcl_FillAuthorAttr( nAuthor, rSet, pModuleConfig->GetFormatAuthorAttr() ); diff --git a/sw/source/ui/app/swmodule.cxx b/sw/source/ui/app/swmodule.cxx index 8d2c6266a874..074d23cab9f2 100644 --- a/sw/source/ui/app/swmodule.cxx +++ b/sw/source/ui/app/swmodule.cxx @@ -431,5 +431,4 @@ void SwModule::RemoveAttrPool() SfxItemPool::Free(pAttrPool); } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/app/swwait.cxx b/sw/source/ui/app/swwait.cxx index f938ae8ee23e..377353ca0950 100644 --- a/sw/source/ui/app/swwait.cxx +++ b/sw/source/ui/app/swwait.cxx @@ -60,5 +60,4 @@ SwWait::~SwWait() rDoc.LeaveWait( bLock ); } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/dochdl/gloshdl.cxx b/sw/source/ui/dochdl/gloshdl.cxx index dac5f794051f..39d3ad220ac7 100644 --- a/sw/source/ui/dochdl/gloshdl.cxx +++ b/sw/source/ui/dochdl/gloshdl.cxx @@ -73,9 +73,8 @@ struct TextBlockInfo_Impl typedef boost::ptr_vector<TextBlockInfo_Impl> TextBlockInfoArr; SV_IMPL_REF( SwDocShell ) -/*------------------------------------------------------------------------ - Description: Dialog for edit templates -------------------------------------------------------------------------*/ + +// Dialog for edit templates void SwGlossaryHdl::GlossaryDlg() { SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create(); @@ -102,10 +101,8 @@ void SwGlossaryHdl::GlossaryDlg() rStatGlossaries.EditGroupDoc( sName, sShortName ); } -/*------------------------------------------------------------------------ - Description: set the default group; if called from the dialog - the group is created temporarily for faster access -------------------------------------------------------------------------*/ +// set the default group; if called from the dialog +// the group is created temporarily for faster access void SwGlossaryHdl::SetCurGroup(const String &rGrp, sal_Bool bApi, sal_Bool bAlwaysCreateNew ) { String sGroup(rGrp); @@ -244,9 +241,7 @@ sal_Bool SwGlossaryHdl::CopyOrMove( const String& rSourceGroupName, String& rSo return !nRet; } -/*------------------------------------------------------------------------ - Description: delete a autotext-file-group -------------------------------------------------------------------------*/ +// delete a autotext-file-group sal_Bool SwGlossaryHdl::DelGroup(const String &rGrpName) { String sGroup(rGrpName); @@ -265,9 +260,8 @@ sal_Bool SwGlossaryHdl::DelGroup(const String &rGrpName) return sal_False; } -/*------------------------------------------------------------------------ - Description: ask for number of autotexts -------------------------------------------------------------------------*/ + +// ask for number of autotexts sal_uInt16 SwGlossaryHdl::GetGlossaryCnt() { return pCurGrp ? pCurGrp->GetCount() : 0; @@ -285,9 +279,7 @@ String SwGlossaryHdl::GetGlossaryShortName(sal_uInt16 nId) return pCurGrp->GetShortName( nId ); } -/*------------------------------------------------------------------------ - Description: ask for short name -------------------------------------------------------------------------*/ +// ask for short name String SwGlossaryHdl::GetGlossaryShortName(const String &rName) { String sReturn; @@ -304,9 +296,7 @@ String SwGlossaryHdl::GetGlossaryShortName(const String &rName) return sReturn; } -/*------------------------------------------------------------------------ - Description: short name for autotext already used? -------------------------------------------------------------------------*/ +// short name for autotext already used? sal_Bool SwGlossaryHdl::HasShortName(const String& rShortName) const { SwTextBlocks *pBlock = pCurGrp ? pCurGrp @@ -322,9 +312,7 @@ sal_Bool SwGlossaryHdl::ConvertToNew(SwTextBlocks& /*rOld*/) return sal_True; } -/*------------------------------------------------------------------------ - Desription: Create autotext -------------------------------------------------------------------------*/ +// Create autotext sal_Bool SwGlossaryHdl::NewGlossary(const String& rName, const String& rShortName, sal_Bool bCreateGroup, sal_Bool bNoAttr) { @@ -357,9 +345,8 @@ sal_Bool SwGlossaryHdl::NewGlossary(const String& rName, const String& rShortNam rStatGlossaries.PutGroupDoc( pTmp ); return sal_Bool( nSuccess != (sal_uInt16) -1 ); } -/*------------------------------------------------------------------------ - Description: Delete a autotext -------------------------------------------------------------------------*/ + +// Delete a autotext sal_Bool SwGlossaryHdl::DelGlossary(const String &rShortName) { SwTextBlocks *pGlossary = pCurGrp ? pCurGrp @@ -376,9 +363,7 @@ sal_Bool SwGlossaryHdl::DelGlossary(const String &rShortName) return sal_True; } -/*------------------------------------------------------------------------ - Description: expand short name -------------------------------------------------------------------------*/ +// expand short name sal_Bool SwGlossaryHdl::ExpandGlossary() { OSL_ENSURE(pWrtShell->CanInsert(), "illegal"); @@ -525,10 +510,10 @@ sal_Bool SwGlossaryHdl::Expand( const String& rShortName, SvxMacro aEndMacro(aEmptyStr, aEmptyStr, STARBASIC); GetMacros( aShortName, aStartMacro, aEndMacro, pGlossary ); - // StartAction must not be before HasSelection and DelRight, - // otherwise the possible Shell change gets delayed and - // API-programs would hang. - // Moreover the event macro must also not be called in an action + // StartAction must not be before HasSelection and DelRight, + // otherwise the possible Shell change gets delayed and + // API-programs would hang. + // Moreover the event macro must also not be called in an action pWrtShell->StartUndo(UNDO_INSGLOSSARY); if( aStartMacro.HasMacro() ) pWrtShell->ExecMacro( aStartMacro ); @@ -555,9 +540,7 @@ sal_Bool SwGlossaryHdl::Expand( const String& rShortName, return sal_True; } -/*------------------------------------------------------------------------ - Description: add autotext -------------------------------------------------------------------------*/ +// add autotext bool SwGlossaryHdl::InsertGlossary(const String &rName) { OSL_ENSURE(pWrtShell->CanInsert(), "illegal"); @@ -601,9 +584,7 @@ bool SwGlossaryHdl::InsertGlossary(const String &rName) return true; } -/*------------------------------------------------------------------------ - Description: set / ask for macro -------------------------------------------------------------------------*/ +// set / ask for macro void SwGlossaryHdl::SetMacros(const String& rShortName, const SvxMacro* pStart, const SvxMacro* pEnd, @@ -653,10 +634,7 @@ void SwGlossaryHdl::GetMacros( const String &rShortName, rStatGlossaries.PutGroupDoc( pGlos ); } - -/*------------------------------------------------------------------------ - Description: ctor, dtor -------------------------------------------------------------------------*/ +// ctor, dtor SwGlossaryHdl::SwGlossaryHdl(SfxViewFrame* pVwFrm, SwWrtShell *pSh) : rStatGlossaries( *::GetGlossaries() ), aCurGrp( rStatGlossaries.GetDefName() ), @@ -672,9 +650,7 @@ SwGlossaryHdl::~SwGlossaryHdl() rStatGlossaries.PutGroupDoc( pCurGrp ); } -/*------------------------------------------------------------------------ - Description: rename an autotext -------------------------------------------------------------------------*/ +// rename an autotext sal_Bool SwGlossaryHdl::Rename(const String& rOldShort, const String& rNewShortName, const String& rNewName ) { @@ -734,9 +710,7 @@ sal_Bool SwGlossaryHdl::IsOld() const return bRet; } -/*-------------------------------------------------- - find group without path index ---------------------------------------------------*/ +// find group without path index sal_Bool SwGlossaryHdl::FindGroupName(String & rGroup) { return rStatGlossaries.FindGroupName(rGroup); diff --git a/sw/source/ui/dochdl/selglos.cxx b/sw/source/ui/dochdl/selglos.cxx index 80099f1853c1..b87ce8d9653a 100644 --- a/sw/source/ui/dochdl/selglos.cxx +++ b/sw/source/ui/dochdl/selglos.cxx @@ -46,9 +46,7 @@ SwSelGlossaryDlg::SwSelGlossaryDlg(Window * pParent, const String &rShortName) aGlosBox.SetDoubleClickHdl(LINK(this, SwSelGlossaryDlg, DoubleClickHdl)); } -/*-------------------------------------------------- - overload dtor ---------------------------------------------------*/ +// overload dtor SwSelGlossaryDlg::~SwSelGlossaryDlg() {} IMPL_LINK(SwSelGlossaryDlg, DoubleClickHdl, ListBox*, /*pBox*/) diff --git a/sw/source/ui/dochdl/swdtflvr.cxx b/sw/source/ui/dochdl/swdtflvr.cxx index 2c0b4d41b8f3..58698e8e2d12 100644 --- a/sw/source/ui/dochdl/swdtflvr.cxx +++ b/sw/source/ui/dochdl/swdtflvr.cxx @@ -1530,7 +1530,7 @@ sal_uInt16 SwTransferable::GetSotDestination( const SwWrtShell& rSh, case OBJCNT_URLBUTTON: nRet = EXCHG_DEST_DOC_URLBUTTON; break; case OBJCNT_GROUPOBJ: nRet = EXCHG_DEST_DOC_GROUPOBJ; break; -// what do we do at multiple selections??? + // what do we do at multiple selections??? default: { if( rSh.GetView().GetDocShell()->ISA(SwWebDocShell) ) @@ -1708,7 +1708,7 @@ int SwTransferable::_PasteOLE( TransferableDataHelper& rData, SwWrtShell& rSh, } else { - // temporary storage until the object is inserted + // temporary storage until the object is inserted uno::Reference< embed::XStorage > xTmpStor; uno::Reference < embed::XEmbeddedObject > xObj; ::rtl::OUString aName; @@ -3089,9 +3089,9 @@ int SwTransferable::PrivatePaste( SwWrtShell& rShell ) bSmart = 0 != (TRNSFR_DOCUMENT_WORD & eBufferType); if( bSmart ) { -// Why not for other Scripts? If TRNSFR_DOCUMENT_WORD is set, we have a word -// in the buffer, word in this context means 'something with spaces at beginning -// and end'. In this case we definitely want these spaces to be inserted here. + // Why not for other Scripts? If TRNSFR_DOCUMENT_WORD is set, we have a word + // in the buffer, word in this context means 'something with spaces at beginning + // and end'. In this case we definitely want these spaces to be inserted here. bInWrd = rShell.IsInWrd(); bEndWrd = rShell.IsEndWrd(); bSmart = bInWrd || bEndWrd; diff --git a/sw/source/ui/docvw/AnchorOverlayObject.cxx b/sw/source/ui/docvw/AnchorOverlayObject.cxx index ab47abbc42bb..b3ee64a844ca 100644 --- a/sw/source/ui/docvw/AnchorOverlayObject.cxx +++ b/sw/source/ui/docvw/AnchorOverlayObject.cxx @@ -34,9 +34,7 @@ namespace sw { namespace sidebarwindows { -////////////////////////////////////////////////////////////////////////////// // helper class: Primitive for discrete visualisation - class AnchorPrimitive : public drawinglayer::primitive2d::DiscreteMetricDependentPrimitive2D { private: @@ -232,7 +230,6 @@ bool AnchorPrimitive::operator==( const drawinglayer::primitive2d::BasePrimitive ImplPrimitrive2DIDBlock(AnchorPrimitive, PRIMITIVE2D_ID_SWSIDEBARANCHORPRIMITIVE) -/****** AnchorOverlayObject ***********************************************************/ /*static*/ AnchorOverlayObject* AnchorOverlayObject::CreateAnchorOverlayObject( SwView& rDocView, const SwRect& aAnchorRect, diff --git a/sw/source/ui/docvw/ShadowOverlayObject.cxx b/sw/source/ui/docvw/ShadowOverlayObject.cxx index e39622bdc931..437507d19607 100644 --- a/sw/source/ui/docvw/ShadowOverlayObject.cxx +++ b/sw/source/ui/docvw/ShadowOverlayObject.cxx @@ -30,14 +30,12 @@ namespace sw { namespace sidebarwindows { -////////////////////////////////////////////////////////////////////////////// // helper SwPostItShadowPrimitive // // Used to allow view-dependent primitive definition. For that purpose, the // initially created primitive (this one) always has to be view-independent, // but the decomposition is made view-dependent. Very simple primitive which // just remembers the discrete data and applies it at decomposition time. - class ShadowPrimitive : public drawinglayer::primitive2d::DiscreteMetricDependentPrimitive2D { private: @@ -167,7 +165,6 @@ bool ShadowPrimitive::operator==( const drawinglayer::primitive2d::BasePrimitive ImplPrimitrive2DIDBlock(ShadowPrimitive, PRIMITIVE2D_ID_SWSIDEBARSHADOWPRIMITIVE) -/****** ShadowOverlayObject **************************************************/ /* static */ ShadowOverlayObject* ShadowOverlayObject::CreateShadowOverlayObject( SwView& rDocView ) { ShadowOverlayObject* pShadowOverlayObject( 0 ); diff --git a/sw/source/ui/docvw/SidebarTxtControlAcc.cxx b/sw/source/ui/docvw/SidebarTxtControlAcc.cxx index 52d3047a2243..7fc6e3b0dd74 100644 --- a/sw/source/ui/docvw/SidebarTxtControlAcc.cxx +++ b/sw/source/ui/docvw/SidebarTxtControlAcc.cxx @@ -33,10 +33,9 @@ namespace sw { namespace sidebarwindows { -// ============================================================================= + // declaration and implementation of <SvxEditSource> // for <::accessibiliy::AccessibleTextHelper> instance -// ============================================================================= class SidebarTextEditSource : public SvxEditSource, public SfxBroadcaster { @@ -126,10 +125,7 @@ IMPL_LINK(SidebarTextEditSource, NotifyHdl, EENotify*, pNotify) return 0; } - -// ============================================================================= // declaration and implementation of accessible context for <SidebarTxtControl> instance -// ============================================================================= class SidebarTxtControlAccessibleContext : public VCLXAccessibleComponent { public: @@ -272,9 +268,7 @@ void SidebarTxtControlAccessibleContext::ProcessWindowEvent( const VclWindowEven VCLXAccessibleComponent::ProcessWindowEvent( rVclWindowEvent ); } -// ============================================================================= // implementaion of accessible for <SidebarTxtControl> instance -// ============================================================================= SidebarTxtControlAccessible::SidebarTxtControlAccessible( SidebarTxtControl& rSidebarTxtControl ) : VCLXWindow() , mrSidebarTxtControl( rSidebarTxtControl ) diff --git a/sw/source/ui/docvw/SidebarWin.cxx b/sw/source/ui/docvw/SidebarWin.cxx index 67fb1f625b7c..95180080e103 100644 --- a/sw/source/ui/docvw/SidebarWin.cxx +++ b/sw/source/ui/docvw/SidebarWin.cxx @@ -80,7 +80,6 @@ namespace sw { namespace sidebarwindows { #define EMPTYSTRING rtl::OUString() -/************** SwSidebarWin************************************/ SwSidebarWin::SwSidebarWin( SwEditWin& rEditWin, WinBits nBits, SwPostItMgr& aMgr, diff --git a/sw/source/ui/docvw/SidebarWinAcc.cxx b/sw/source/ui/docvw/SidebarWinAcc.cxx index a54286497c94..283de1c22185 100644 --- a/sw/source/ui/docvw/SidebarWinAcc.cxx +++ b/sw/source/ui/docvw/SidebarWinAcc.cxx @@ -28,9 +28,7 @@ namespace sw { namespace sidebarwindows { -// ============================================================================= // declaration and implementation of accessible context for <SidebarWinAccessible> instance -// ============================================================================= class SidebarWinAccessibleContext : public VCLXAccessibleComponent { public: @@ -94,9 +92,7 @@ class SidebarWinAccessibleContext : public VCLXAccessibleComponent ::osl::Mutex maMutex; }; -// ============================================================================= // implementaion of accessible for <SwSidebarWin> instance -// ============================================================================= SidebarWinAccessible::SidebarWinAccessible( SwSidebarWin& rSidebarWin, ViewShell& rViewShell, const SwSidebarItem& rSidebarItem ) diff --git a/sw/source/ui/docvw/edtdd.cxx b/sw/source/ui/docvw/edtdd.cxx index e0fda04fc969..fbe9ff0ca557 100644 --- a/sw/source/ui/docvw/edtdd.cxx +++ b/sw/source/ui/docvw/edtdd.cxx @@ -217,7 +217,6 @@ sal_Int8 SwEditWin::ExecuteDrop( const ExecuteDropEvent& rEvt ) } } - // There's a special treatment for file lists with a single // element, that depends on the actual content of the // Transferable to be accessible. Since the transferable @@ -498,6 +497,4 @@ IMPL_LINK_NOARG(SwEditWin, DDHandler) return 0; } - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/docvw/edtwin.cxx b/sw/source/ui/docvw/edtwin.cxx index eff32178da9e..63e46bcce5b7 100644 --- a/sw/source/ui/docvw/edtwin.cxx +++ b/sw/source/ui/docvw/edtwin.cxx @@ -148,7 +148,6 @@ using namespace ::com::sun::star; /** * Globals */ - static bool bInputLanguageSwitched = false; extern bool bNoInterrupt; // in mainwn.cxx @@ -285,7 +284,6 @@ struct QuickHelpData /** * Avoid minimal movement shiver */ - #define HIT_PIX 2 /* hit tolerance in pixel */ #define MIN_MOVE 4 @@ -659,7 +657,6 @@ inline void SwEditWin::EnterArea() /** * Insert mode for frames */ - void SwEditWin::InsFrm(sal_uInt16 nCols) { StdDrawMode( OBJ_NONE, sal_False ); @@ -5607,8 +5604,6 @@ uno::Reference< ::com::sun::star::accessibility::XAccessible > SwEditWin::Create return xAcc; } -//------------------------------------------------------------- - void QuickHelpData::Move( QuickHelpData& rCpy ) { m_aHelpStrings.clear(); diff --git a/sw/source/ui/docvw/edtwin2.cxx b/sw/source/ui/docvw/edtwin2.cxx index bc329b36ea2a..555d8100471f 100644 --- a/sw/source/ui/docvw/edtwin2.cxx +++ b/sw/source/ui/docvw/edtwin2.cxx @@ -69,9 +69,6 @@ #include <IDocumentMarkAccess.hxx> #include <ndtxt.hxx> -/*-------------------------------------------------------------------- - Description: KeyEvents - --------------------------------------------------------------------*/ static void lcl_GetRedlineHelp( const SwRedline& rRedl, String& rTxt, sal_Bool bBalloon ) { sal_uInt16 nResId = 0; @@ -529,5 +526,4 @@ void SwEditWin::Paint(const Rectangle& rRect) m_pShadCrsr->Paint(); } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/docvw/edtwin3.cxx b/sw/source/ui/docvw/edtwin3.cxx index b7412a294dca..ca77b5004110 100644 --- a/sw/source/ui/docvw/edtwin3.cxx +++ b/sw/source/ui/docvw/edtwin3.cxx @@ -36,12 +36,8 @@ #include <editeng/frmdiritem.hxx> -/*-------------------------------------------------------------------- - Description: Core-Notify - --------------------------------------------------------------------*/ - - +// Core-Notify void ScrollMDI( ViewShell* pVwSh, const SwRect &rRect, sal_uInt16 nRangeX, sal_uInt16 nRangeY) { @@ -50,12 +46,7 @@ void ScrollMDI( ViewShell* pVwSh, const SwRect &rRect, ((SwView *)pSfxVwSh)->Scroll( rRect.SVRect(), nRangeX, nRangeY ); } -/*-------------------------------------------------------------------- - Description: Docmdi - movable - --------------------------------------------------------------------*/ - - - +// Docmdi - movable sal_Bool IsScrollMDI( ViewShell* pVwSh, const SwRect &rRect ) { SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell(); @@ -64,12 +55,7 @@ sal_Bool IsScrollMDI( ViewShell* pVwSh, const SwRect &rRect ) return sal_False; } -/*-------------------------------------------------------------------- - Description: Notify for size change - --------------------------------------------------------------------*/ - - - +// Notify for size change void SizeNotify(ViewShell* pVwSh, const Size &rSize) { SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell(); @@ -82,10 +68,7 @@ void SizeNotify(ViewShell* pVwSh, const Size &rSize) } } -/*-------------------------------------------------------------------- - Description: Notify for page number update - --------------------------------------------------------------------*/ - +// Notify for page number update void PageNumNotify( ViewShell* pVwSh, sal_uInt16 nPhyNum, sal_uInt16 nVirtNum, const rtl::OUString& rPgStr) { @@ -95,22 +78,13 @@ void PageNumNotify( ViewShell* pVwSh, sal_uInt16 nPhyNum, sal_uInt16 nVirtNum, ((SwView *)pSfxVwSh)->UpdatePageNums(nPhyNum, nVirtNum, rPgStr); } -/****************************************************************************** - * Method : void FrameNotify( DocMDIBase *pWin, FlyMode eMode ) - * Description: - ******************************************************************************/ - - - void FrameNotify( ViewShell* pVwSh, FlyMode eMode ) { if ( pVwSh->ISA(SwCrsrShell) ) SwBaseShell::SetFrmMode( eMode, (SwWrtShell*)pVwSh ); } -/*-------------------------------------------------------------------- - Description: Notify for page number update - --------------------------------------------------------------------*/ +// Notify for page number update sal_Bool SwEditWin::RulerColumnDrag( const MouseEvent& rMEvt, sal_Bool bVerticalMode) { SvxRuler& rRuler = bVerticalMode ? m_rView.GetVLineal() : m_rView.GetHLineal(); diff --git a/sw/source/ui/docvw/romenu.cxx b/sw/source/ui/docvw/romenu.cxx index 7b89ff539639..4adf9753fbba 100644 --- a/sw/source/ui/docvw/romenu.cxx +++ b/sw/source/ui/docvw/romenu.cxx @@ -233,9 +233,7 @@ void SwReadOnlyPopup::Execute( Window* pWin, const Point &rPixPos ) Execute(pWin, nId); } -/*------------------------------------------------------------------------- - execute the resulting ID only - necessary to support XContextMenuInterception - -----------------------------------------------------------------------*/ +// execute the resulting ID only - necessary to support XContextMenuInterception void SwReadOnlyPopup::Execute( Window* pWin, sal_uInt16 nId ) { SwWrtShell &rSh = rView.GetWrtShell(); @@ -365,6 +363,4 @@ String SwReadOnlyPopup::SaveGraphic( sal_uInt16 nId ) return GraphicHelper::ExportGraphic( aGraphic, sGrfName ); } - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/ui/docvw/srcedtw.cxx b/sw/source/ui/docvw/srcedtw.cxx index 9bf24bbee688..2ed024dd224b 100644 --- a/sw/source/ui/docvw/srcedtw.cxx +++ b/sw/source/ui/docvw/srcedtw.cxx @@ -796,7 +796,6 @@ static bool lcl_GetLanguagesForEncoding(rtl_TextEncoding eEnc, LanguageType aLan // don#t fill - all LANGUAGE_SYSTEM means unicode font has to be used break; - case RTL_TEXTENCODING_ISO_8859_3: case RTL_TEXTENCODING_ISO_8859_1 : case RTL_TEXTENCODING_MS_1252 : |