diff options
author | Prashant Shah <pshah.mumbai@gmail.com> | 2010-10-11 17:38:56 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-11 17:38:56 -0500 |
commit | ecb8af14da097ef7ab4625b5ee46a435b2e0d678 (patch) | |
tree | 79a63a6ee99ba3cb915f9ae0d456f04822039baf /sw/source/ui/uiview/viewling.cxx | |
parent | 99f933972a0491907b33a116e15ceb88d863b99a (diff) |
Remove bogus comment in sw
Diffstat (limited to 'sw/source/ui/uiview/viewling.cxx')
-rw-r--r-- | sw/source/ui/uiview/viewling.cxx | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sw/source/ui/uiview/viewling.cxx b/sw/source/ui/uiview/viewling.cxx index b3f73f7c38e4..7fe310b5a004 100644 --- a/sw/source/ui/uiview/viewling.cxx +++ b/sw/source/ui/uiview/viewling.cxx @@ -114,8 +114,6 @@ using namespace ::com::sun::star::smarttags; /*-------------------------------------------------------------------- Beschreibung: Lingu-Dispatcher --------------------------------------------------------------------*/ - - void SwView::ExecLingu(SfxRequest &rReq) { switch(rReq.GetSlot()) @@ -241,7 +239,6 @@ void SwView::ExecLingu(SfxRequest &rReq) /*-------------------------------------------------------------------- Description: start language specific text conversion --------------------------------------------------------------------*/ - void SwView::StartTextConversion( LanguageType nSourceLang, LanguageType nTargetLang, @@ -287,7 +284,6 @@ void SwView::StartTextConversion( /*-------------------------------------------------------------------- spellcheck and text conversion related stuff --------------------------------------------------------------------*/ - void SwView::SpellStart( SvxSpellArea eWhich, sal_Bool bStartDone, sal_Bool bEndDone, SwConversionArgs *pConvArgs ) @@ -350,8 +346,6 @@ void SwView::SpellStart( SvxSpellArea eWhich, /*-------------------------------------------------------------------- Beschreibung: Fehlermeldung beim Spelling --------------------------------------------------------------------*/ - - // Der uebergebene Pointer nLang ist selbst der Wert IMPL_LINK( SwView, SpellError, LanguageType *, pLang ) { @@ -415,8 +409,6 @@ IMPL_LINK( SwView, SpellError, LanguageType *, pLang ) /*-------------------------------------------------------------------- Beschreibung: Spelling beenden und Cursor wiederherstellen --------------------------------------------------------------------*/ - - void SwView::SpellEnd( SwConversionArgs *pConvArgs ) { pWrtShell->SpellEnd( pConvArgs ); @@ -424,7 +416,6 @@ void SwView::SpellEnd( SwConversionArgs *pConvArgs ) pWrtShell->SetMark(); } - void SwView::HyphStart( SvxSpellArea eWhich ) { switch ( eWhich ) @@ -449,8 +440,6 @@ void SwView::HyphStart( SvxSpellArea eWhich ) /*-------------------------------------------------------------------- Beschreibung: Interaktive Trennung --------------------------------------------------------------------*/ - - void SwView::HyphenateDocument() { // do not hyphenate if interactive hyphenationg is active elsewhere @@ -523,9 +512,6 @@ void SwView::HyphenateDocument() } } -/*-------------------------------------------------------------------- - --------------------------------------------------------------------*/ - bool SwView::IsValidSelectionForThesaurus() const { // must not be a multi-selection, and if it is a selection it needs @@ -536,13 +522,11 @@ bool SwView::IsValidSelectionForThesaurus() const return !bMultiSel && (!bSelection || pWrtShell->IsSelOnePara() ); } - String SwView::GetThesaurusLookUpText( bool bSelection ) const { return bSelection ? pWrtShell->GetSelTxt() : pWrtShell->GetCurWord(); } - void SwView::InsertThesaurusSynonym( const String &rSynonmText, const String &rLookUpText, bool bSelection ) { sal_Bool bOldIns = pWrtShell->IsInsMode(); @@ -586,12 +570,9 @@ void SwView::InsertThesaurusSynonym( const String &rSynonmText, const String &rL pWrtShell->SetInsMode( bOldIns ); } - /*-------------------------------------------------------------------- Beschreibung: Thesaurus starten --------------------------------------------------------------------*/ - - void SwView::StartThesaurus() { if (!IsValidSelectionForThesaurus()) @@ -648,7 +629,6 @@ void SwView::StartThesaurus() /*-------------------------------------------------------------------- Beschreibung: Online-Vorschlaege anbieten *--------------------------------------------------------------------*/ - //!! Start of extra code for context menu modifying extensions struct ExecuteInfo { @@ -833,7 +813,6 @@ sal_Bool SwView::ExecSpellPopup(const Point& rPt) This function shows the popup menu for smarttag actions. */ - sal_Bool SwView::ExecSmartTagPopup( const Point& rPt ) { sal_Bool bRet = sal_False; @@ -864,8 +843,6 @@ sal_Bool SwView::ExecSmartTagPopup( const Point& rPt ) return bRet; } - - class SwFieldPopup : public PopupMenu { public: @@ -977,7 +954,6 @@ IMPL_LINK( SwFieldDialog, MyListBoxHandler, ListBox *, pBox ) } } - BOOL SwView::ExecFieldPopup( const Point& rPt, IFieldmark *fieldBM ) { sal_Bool bRet = sal_False; @@ -1002,4 +978,3 @@ BOOL SwView::ExecFieldPopup( const Point& rPt, IFieldmark *fieldBM ) return bRet; } - |