summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-10 23:00:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-11 11:10:38 +0100
commit7292948992e088862d86e96ccbf28f9757fded24 (patch)
treeaad255bc7c86c78949c1025a32bb42b1febdf6fb
parent8564eb0d6a7c8bd01bb217a18f8ab74d4e36411a (diff)
callcatcher: yet more unused code
-rw-r--r--basic/source/app/dialogs.cxx6
-rw-r--r--basic/source/basmgr/basmgr.cxx14
-rw-r--r--lotuswordpro/source/filter/bencont.cxx7
-rw-r--r--lotuswordpro/source/filter/bento.hxx2
-rw-r--r--lotuswordpro/source/filter/lwpchangemgr.cxx147
-rw-r--r--lotuswordpro/source/filter/lwpchangemgr.hxx1
-rw-r--r--lotuswordpro/source/filter/lwpmarker.cxx26
-rw-r--r--lotuswordpro/source/filter/lwpmarker.hxx1
-rw-r--r--svl/inc/svl/itempool.hxx2
-rw-r--r--svl/source/items/poolio.cxx7
-rw-r--r--svx/inc/svx/svdedtv.hxx3
-rw-r--r--svx/inc/svx/svdglev.hxx1
-rw-r--r--svx/source/svdraw/svdedtv2.cxx21
-rw-r--r--svx/source/svdraw/svdglev.cxx7
-rw-r--r--sw/source/ui/inc/hyp.hxx1
-rw-r--r--sw/source/ui/lingu/hyp.cxx11
-rw-r--r--unusedcode.easy8
17 files changed, 3 insertions, 262 deletions
diff --git a/basic/source/app/dialogs.cxx b/basic/source/app/dialogs.cxx
index 1d674836ca8d..2f8255386e51 100644
--- a/basic/source/app/dialogs.cxx
+++ b/basic/source/app/dialogs.cxx
@@ -747,9 +747,9 @@ void FontOptions::UpdatePreview()
void FontOptions::Save( Config &aConfig )
{
aConfig.SetGroup("Misc");
- aConfig.WriteKey( "ScriptFontName", aFontName.GetText(), RTL_TEXTENCODING_UTF8 );
- aConfig.WriteKey( "ScriptFontStyle", aFontStyle.GetText(), RTL_TEXTENCODING_UTF8 );
- aConfig.WriteKey( "ScriptFontSize", aFontSize.GetText(), RTL_TEXTENCODING_UTF8 );
+ aConfig.WriteKey( "ScriptFontName", ByteString(aFontName.GetText(), RTL_TEXTENCODING_UTF8) );
+ aConfig.WriteKey( "ScriptFontStyle", ByteString(aFontStyle.GetText(), RTL_TEXTENCODING_UTF8) );
+ aConfig.WriteKey( "ScriptFontSize", ByteString(aFontSize.GetText(), RTL_TEXTENCODING_UTF8) );
}
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx
index ed040c8d2a14..9fc864a2cc81 100644
--- a/basic/source/basmgr/basmgr.cxx
+++ b/basic/source/basmgr/basmgr.cxx
@@ -492,7 +492,6 @@ public:
void SetRelStorageName( const String& rN ) { aRelStorageName = rN; }
const String& GetRelStorageName() const { return aRelStorageName; }
- void CalcRelStorageName( const String& rMgrStorageName );
StarBASICRef GetLib() const
{
@@ -691,19 +690,6 @@ BasicLibInfo* BasicLibInfo::Create( SotStorageStream& rSStream )
return pInfo;
}
-void BasicLibInfo::CalcRelStorageName( const String& rMgrStorageName )
-{
- if ( rMgrStorageName.Len() )
- {
- INetURLObject aAbsURLObj( rMgrStorageName );
- aAbsURLObj.removeSegment();
- String aPath = aAbsURLObj.GetMainURL( INetURLObject::NO_DECODE );
- UniString aRelURL = INetURLObject::GetRelURL( aPath, GetStorageName() );
- SetRelStorageName( aRelURL );
- }
- else
- SetRelStorageName( String() );
-}
BasicManager::BasicManager( SotStorage& rStorage, const String& rBaseURL, StarBASIC* pParentFromStdLib, String* pLibPath, sal_Bool bDocMgr ) : mbDocMgr( bDocMgr )
{
DBG_CTOR( BasicManager, 0 );
diff --git a/lotuswordpro/source/filter/bencont.cxx b/lotuswordpro/source/filter/bencont.cxx
index d2a0e0fa220d..320444de819b 100644
--- a/lotuswordpro/source/filter/bencont.cxx
+++ b/lotuswordpro/source/filter/bencont.cxx
@@ -455,13 +455,6 @@ BenError LtcBenContainer::CreateGraphicStream(SvStream * &pStream, const char *p
#include <tools/globname.hxx>
-void LtcBenContainer::ReadAswEntry(SvStream * pStream, AswEntry & rEntry)
-{
- char* pBuf = new char[ASWENTRY_SIZE];
- pStream->Read(pBuf, ASWENTRY_SIZE);
- rEntry.Load(pBuf);
- delete[] pBuf;
-}
////////////////////////////////////////////////////////////////////
//classs AswEntry
AswEntry::AswEntry()
diff --git a/lotuswordpro/source/filter/bento.hxx b/lotuswordpro/source/filter/bento.hxx
index 0da355bd0bce..fb2f5be8cb64 100644
--- a/lotuswordpro/source/filter/bento.hxx
+++ b/lotuswordpro/source/filter/bento.hxx
@@ -298,8 +298,6 @@ public: // Internal methods
LtcUtBenValueStream * FindObjectValueStreamWithObjectIDAndProperty(BenObjectID ObjectID, const char * sPropertyName);
BenError CreateGraphicStream(SvStream * &pStream, const char *pObjectName);
- void ReadAswEntry(SvStream * pStream, AswEntry& rEntry);
-
BenError GetSize(sal_uLong * pLength);
LwpSvStream * GetStream()
{
diff --git a/lotuswordpro/source/filter/lwpchangemgr.cxx b/lotuswordpro/source/filter/lwpchangemgr.cxx
index a9a11dfa6b51..d9916f040559 100644
--- a/lotuswordpro/source/filter/lwpchangemgr.cxx
+++ b/lotuswordpro/source/filter/lwpchangemgr.cxx
@@ -192,153 +192,6 @@ void LwpChangeMgr::SetHeadFootChange(XFContentContainer* pCont)
}
pCont->Add(pChangeList);
-
-// m_HeadFootFribMap.clear();
-}
-
-void LwpChangeMgr::ConvertFribContent(XFContentContainer* pCont, LwpFrib* pFrib)
-{
- XFParagraph* pXFPara = new XFParagraph;
- LwpPara* pPara = pFrib->GetMyPara();
- if (pPara)
- pXFPara->SetStyleName(pPara->GetStyleName());
-
- switch(pFrib->GetType())//copy code from class lwpfribptr
- {
- case FRIB_TAG_TEXT:
- {
- LwpFribText* textFrib= static_cast<LwpFribText*>(pFrib);
- textFrib->XFConvert(pXFPara,pPara->GetStory());
- }
- break;
- case FRIB_TAG_TAB:
- {
- LwpFribTab* tabFrib = static_cast<LwpFribTab*>(pFrib);
- if (pFrib->m_ModFlag)
- {
- XFTextSpan *pSpan = new XFTextSpan();
- pSpan->SetStyleName(tabFrib->GetStyleName());
- XFTabStop *pTab = new XFTabStop();
- pSpan->Add(pTab);
- pXFPara->Add(pSpan);
- }
- else
- {
- XFTabStop *pTab = new XFTabStop();
- pXFPara->Add(pTab);
- }
- }
- break;
- case FRIB_TAG_LINEBREAK:
- {
- XFLineBreak *pLineBreak = new XFLineBreak();
- pXFPara->Add(pLineBreak);
- }
- break;
- case FRIB_TAG_UNICODE: //fall through
- case FRIB_TAG_UNICODE2: //fall through
- case FRIB_TAG_UNICODE3: //fall through
- {
- LwpFribUnicode* unicodeFrib= static_cast<LwpFribUnicode*>(pFrib);
- unicodeFrib->XFConvert(pXFPara,pPara->GetStory());
- }
- break;
- case FRIB_TAG_HARDSPACE:
- {
- rtl::OUString sHardSpace(sal_Unicode(0x00a0));
- LwpHyperlinkMgr* pHyperlink =
- pPara->GetStory()->GetHyperlinkMgr();
- if (pHyperlink->GetHyperlinkFlag())
- pFrib->ConvertHyperLink(pXFPara,pHyperlink,sHardSpace);
- else
- pFrib->ConvertChars(pXFPara,sHardSpace);
- }
- break;
- case FRIB_TAG_SOFTHYPHEN:
- {
- rtl::OUString sSoftHyphen(sal_Unicode(0x00ad));
- pFrib->ConvertChars(pXFPara,sSoftHyphen);
- }
- break;
-/* case FRIB_TAG_FRAME:
- {
- LwpFribFrame* frameFrib= static_cast<LwpFribFrame*>(pFrib);
- LwpObject* pLayout = frameFrib->GetLayout();
- if (pLayout->GetTag() == VO_DROPCAPLAYOUT)
- {
- pPara->GetFoundry()->GetDropcapMgr()->SetXFPara(pXFPara);
- //LwpObject* pDropCap = frameFrib->GetLayout();
- //pDropCap ->XFConvert(m_pXFPara);
- }
- //pLayout->XFConvert(m_pXFPara);
- frameFrib->XFConvert(pXFPara);
- }
- break;
-*/ case FRIB_TAG_CHBLOCK:
- {
- LwpFribCHBlock* chbFrib = static_cast<LwpFribCHBlock*>(pFrib);
- chbFrib->XFConvert(pXFPara,pPara->GetStory());
- }
- break;
-/* case FRIB_TAG_TABLE:
- {
- LwpFribTable* tableFrib = static_cast<LwpFribTable*>(pFrib);
- //tableFrib->XFConvert(m_pPara->GetXFContainer());
- tableFrib->XFConvert(pXFPara);
- }
- break;
-*/ case FRIB_TAG_BOOKMARK:
- {
- LwpFribBookMark* bookmarkFrib = static_cast<LwpFribBookMark*>(pFrib);
- bookmarkFrib->XFConvert(pXFPara);
- }
- break;
- case FRIB_TAG_FOOTNOTE:
- {
- LwpFribFootnote* pFootnoteFrib = static_cast<LwpFribFootnote*>(pFrib);
- pFootnoteFrib->XFConvert(pXFPara);
- break;
- }
- case FRIB_TAG_FIELD:
- {
- LwpFribField* fieldFrib = static_cast<LwpFribField*>(pFrib);
- fieldFrib->XFConvert(pXFPara);
- break;
- }
- case FRIB_TAG_NOTE:
- {
- LwpFribNote* pNoteFrib = static_cast<LwpFribNote*>(pFrib);
- pNoteFrib->XFConvert(pXFPara);
- break;
- }
- case FRIB_TAG_PAGENUMBER:
- {
- LwpFribPageNumber* pagenumFrib = static_cast<LwpFribPageNumber*>(pFrib);
- pagenumFrib->XFConvert(pXFPara);
- break;
- }
- case FRIB_TAG_DOCVAR:
- {
- LwpFribDocVar* docFrib = static_cast<LwpFribDocVar*>(pFrib);
- docFrib->XFConvert(pXFPara);
- break;
- }
- case FRIB_TAG_RUBYMARKER:
- {
- LwpFribRubyMarker* rubyFrib = static_cast<LwpFribRubyMarker*>(pFrib);
- rubyFrib->XFConvert(pXFPara);
- break;
- }
- case FRIB_TAG_RUBYFRAME:
- {
- LwpFribRubyFrame* rubyfrmeFrib = static_cast<LwpFribRubyFrame*>(pFrib);
- rubyfrmeFrib->XFConvert(pXFPara);
- break;
- }
- default :
- break;
- }
- pCont->Add(pXFPara);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/lotuswordpro/source/filter/lwpchangemgr.hxx b/lotuswordpro/source/filter/lwpchangemgr.hxx
index 0c12e078a605..3262b1bf98ad 100644
--- a/lotuswordpro/source/filter/lwpchangemgr.hxx
+++ b/lotuswordpro/source/filter/lwpchangemgr.hxx
@@ -90,7 +90,6 @@ private:
std::map<LwpFrib*,OUString> m_HeadFootFribMap;
std::vector<XFChangeRegion*> m_ChangeList;
sal_uInt32 m_nCounter;
- void ConvertFribContent(XFContentContainer* pCont, LwpFrib* pFrib);
};
#endif
diff --git a/lotuswordpro/source/filter/lwpmarker.cxx b/lotuswordpro/source/filter/lwpmarker.cxx
index 174ad2f4102e..6229d44a7f01 100644
--- a/lotuswordpro/source/filter/lwpmarker.cxx
+++ b/lotuswordpro/source/filter/lwpmarker.cxx
@@ -165,8 +165,6 @@ void LwpCHBlkMarker::ConvertCHBlock(XFContentContainer* pXFPara, sal_uInt8 nType
case CLICKHERE_CHBEHAVIORDATETIME:
ProcessOtherCHB(pXFPara,nType);
break;
-// ProcessPageNumber(pXFPara,nType);
-// break;
case CLICKHERE_CHBEHAVIORSTRINGLIST:
ProcessKeylist(pXFPara,nType);
break;
@@ -240,30 +238,6 @@ void LwpCHBlkMarker::ProcessOtherCHB(XFContentContainer* pXFPara,sal_uInt8 nType
}
-void LwpCHBlkMarker::ProcessPageNumber(XFContentContainer* pXFPara,sal_uInt8 nType)
-{
- sal_Bool bFillFlag = IsHasFilled();
- sal_Bool bHelpFlag = IsBubbleHelp();
-
- if ( bFillFlag )
- return;
- if (nType == MARKER_START)
- {
- XFHolderStart* pHolder= new XFHolderStart;
- pHolder->SetType(A2OUSTR("text"));
- if (bHelpFlag)
- pHolder->SetDesc(m_Help.str());
- pHolder->SetPrompt(GetPromptText());
- pXFPara->Add(pHolder);
- }
- else if (nType == MARKER_END)
- {
- XFHolderEnd* pHolder = new XFHolderEnd;
- pXFPara->Add(pHolder);
- }
-
-}
-
//note: there will be a blank to mark the list
//all input content of key list processed as normal text
void LwpCHBlkMarker::ProcessKeylist(XFContentContainer* pXFPara,sal_uInt8 nType)
diff --git a/lotuswordpro/source/filter/lwpmarker.hxx b/lotuswordpro/source/filter/lwpmarker.hxx
index c99643c080c9..3b78bcad4304 100644
--- a/lotuswordpro/source/filter/lwpmarker.hxx
+++ b/lotuswordpro/source/filter/lwpmarker.hxx
@@ -144,7 +144,6 @@ public:
private:
void ProcessPlaceHolder(XFContentContainer* pXFPara,sal_uInt16 nAction,sal_uInt8 nType);
void ProcessOtherCHB(XFContentContainer* pXFPara,sal_uInt8 nType);
- void ProcessPageNumber(XFContentContainer* pXFPara,sal_uInt8 nType);
void ProcessKeylist(XFContentContainer* pXFPara,sal_uInt8 nType);
sal_Bool IsHasFilled();
sal_Bool IsBubbleHelp();
diff --git a/svl/inc/svl/itempool.hxx b/svl/inc/svl/itempool.hxx
index a2e54698059a..a3a543e5bf2e 100644
--- a/svl/inc/svl/itempool.hxx
+++ b/svl/inc/svl/itempool.hxx
@@ -149,8 +149,6 @@ public:
void FillItemIdRanges_Impl( sal_uInt16*& pWhichRanges ) const;
const sal_uInt16* GetFrozenIdRanges() const
{ return _pPoolRanges; }
- bool IsVer2_Impl() const;
-
#endif
//---------------------------------------------------------------------
diff --git a/svl/source/items/poolio.cxx b/svl/source/items/poolio.cxx
index ea49c2b2dd06..27404859f05b 100644
--- a/svl/source/items/poolio.cxx
+++ b/svl/source/items/poolio.cxx
@@ -1454,13 +1454,6 @@ bool SfxItemPool::IsCurrentVersionLoading() const
( !pSecondary || pSecondary->IsCurrentVersionLoading() );
}
-// -----------------------------------------------------------------------
-
-bool SfxItemPool::IsVer2_Impl() const
-{
- return pMaster->pImp->nMajorVer >= 2;
-}
-
//-------------------------------------------------------------------------
diff --git a/svx/inc/svx/svdedtv.hxx b/svx/inc/svx/svdedtv.hxx
index e0606970cc4c..6dd2d783bb67 100644
--- a/svx/inc/svx/svdedtv.hxx
+++ b/svx/inc/svx/svdedtv.hxx
@@ -162,9 +162,6 @@ protected:
// zurueckgesetzt.
void ImpCheckToTopBtmPossible();
- // fuer den Writer werden virtuelle Objekte buendig zusammengehalten (Z-Order)
- void ImpBundleVirtObjOfMarkList();
-
// fuer CombineMarkedObjects und DismantleMarkedObjects
void ImpCopyAttributes(const SdrObject* pSource, SdrObject* pDest) const;
diff --git a/svx/inc/svx/svdglev.hxx b/svx/inc/svx/svdglev.hxx
index 83656badf9d9..bb73dfebc8f1 100644
--- a/svx/inc/svx/svdglev.hxx
+++ b/svx/inc/svx/svdglev.hxx
@@ -101,7 +101,6 @@ public:
// Alle merkierten Klebepunkte entfernen
void DeleteMarkedGluePoints();
- sal_Bool IsDeleteMarkedGluePointsPossible() const;
void MoveMarkedGluePoints (const Size& rSiz, bool bCopy=false);
void ResizeMarkedGluePoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact, bool bCopy=false);
diff --git a/svx/source/svdraw/svdedtv2.cxx b/svx/source/svdraw/svdedtv2.cxx
index a27d1d1b4a4f..9eb613b1d917 100644
--- a/svx/source/svdraw/svdedtv2.cxx
+++ b/svx/source/svdraw/svdedtv2.cxx
@@ -61,27 +61,6 @@
#include <vector>
using ::std::vector;
-////////////////////////////////////////////////////////////////////////////////////////////////////
-////////////////////////////////////////////////////////////////////////////////////////////////////
-////////////////////////////////////////////////////////////////////////////////////////////////////
-////////////////////////////////////////////////////////////////////////////////////////////////////
-//
-// @@@@@ @@@@@ @@ @@@@@@ @@ @@ @@ @@@@@ @@ @@
-// @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
-// @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @ @@
-// @@@@ @@ @@ @@ @@ @@@@@ @@ @@@@ @@@@@@@
-// @@ @@ @@ @@ @@ @@@ @@ @@ @@@@@@@
-// @@ @@ @@ @@ @@ @@@ @@ @@ @@@ @@@
-// @@@@@ @@@@@ @@ @@ @ @@ @@@@@ @@ @@
-//
-////////////////////////////////////////////////////////////////////////////////////////////////////
-////////////////////////////////////////////////////////////////////////////////////////////////////
-
-void SdrEditView::ImpBundleVirtObjOfMarkList()
-{
- // ... fehlende Implementation
-}
-
SdrObject* SdrEditView::GetMaxToTopObj(SdrObject* /*pObj*/) const
{
return NULL;
diff --git a/svx/source/svdraw/svdglev.cxx b/svx/source/svdraw/svdglev.cxx
index 11061c0ea02a..7dc621a9c1df 100644
--- a/svx/source/svdraw/svdglev.cxx
+++ b/svx/source/svdraw/svdglev.cxx
@@ -232,13 +232,6 @@ void SdrGlueEditView::SetMarkedGluePointsAlign(sal_Bool bVert, sal_uInt16 nAlign
EndUndo();
}
-////////////////////////////////////////////////////////////////////////////////////////////////////
-
-sal_Bool SdrGlueEditView::IsDeleteMarkedGluePointsPossible() const
-{
- return HasMarkedGluePoints();
-}
-
void SdrGlueEditView::DeleteMarkedGluePoints()
{
BrkAction();
diff --git a/sw/source/ui/inc/hyp.hxx b/sw/source/ui/inc/hyp.hxx
index fdc997b58fb4..96ab1503748e 100644
--- a/sw/source/ui/inc/hyp.hxx
+++ b/sw/source/ui/inc/hyp.hxx
@@ -48,7 +48,6 @@ private:
sal_Bool bShowError : 1; // report non existing language
sal_Bool bAutomatic : 1; // insert seperators without further inquiry
sal_Bool bInfoBox : 1; // display info-box when ending
- DECL_LINK( SpellError, LanguageType * );
protected:
virtual void SpellStart( SvxSpellArea eSpell );
diff --git a/sw/source/ui/lingu/hyp.cxx b/sw/source/ui/lingu/hyp.cxx
index 3731a6f6d6d7..27955070a6c0 100644
--- a/sw/source/ui/lingu/hyp.cxx
+++ b/sw/source/ui/lingu/hyp.cxx
@@ -132,17 +132,6 @@ void SwHyphWrapper::SpellEnd()
SvxSpellWrapper::SpellEnd();
}
-IMPL_LINK( SwHyphWrapper, SpellError, LanguageType *, pLang )
-{
- if (pLang && *pLang != nLangError )
- {
- nLangError = *pLang;
- bShowError = sal_True;
- }
- return 0;
-}
-
-
// -----------------------------------------------------------------------
sal_Bool SwHyphWrapper::SpellMore()
{
diff --git a/unusedcode.easy b/unusedcode.easy
index 461bff6bc39a..112983b2b11a 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -2,7 +2,6 @@
(anonymous namespace)::writeInfo(com::sun::star::uno::Reference<com::sun::star::registry::XRegistryKey> const&, rtl::OUString const&, rtl::OUString const&)
Application::PostUserEvent(unsigned long, void*)
BasicIDEDLL::~BasicIDEDLL()
-BasicLibInfo::CalcRelStorageName(String const&)
BasicLibs::Last()
BasicLibs::Prev()
BasicManager::BasicManager()
@@ -427,9 +426,7 @@ LongCurrencyFormatter::SetEmptyValue()
LotAttrCache::ENTRY::ENTRY(ScPatternAttr const&)
LotAttrCol::Clear()
LwpBulletStyleMgr::GetSectionName(LwpPara*)
-LwpCHBlkMarker::ProcessPageNumber(XFContentContainer*, unsigned char)
LwpCellLayout::GetLeaderChar()
-LwpChangeMgr::ConvertFribContent(XFContentContainer*, LwpFrib*)
LwpCharacterBorderOverride::Override(LwpCharacterBorderOverride*)
LwpDLList::LwpDLList(LwpDLList*, LwpDLList*)
LwpDocData::SkipAtomHandler(LwpSvStream*)
@@ -554,7 +551,6 @@ OpenStormBento::CUtList::GetIndex(int)
OpenStormBento::CUtList::GetPrevOrNULL(OpenStormBento::CUtListElmt*)
OpenStormBento::LtcBenContainer::FindObjectValueStreamWithObjectIDAndProperty(unsigned long, char const*)
OpenStormBento::LtcBenContainer::GetPosition(unsigned long*)
-OpenStormBento::LtcBenContainer::ReadAswEntry(SvStream*, OpenStormBento::AswEntry&)
OpenStormBento::LtcBenContainer::RegisterTypeName(char const*, OpenStormBento::CBenTypeName**)
OpenStormBento::LtcBenContainer::Release()
Outliner::Draw(OutputDevice*, Rectangle const&, Point const&)
@@ -875,7 +871,6 @@ SdrDragView::SetDetailedEdgeDragging(unsigned char)
SdrDragView::SetDetailedEdgeDraggingLimit(unsigned short)
SdrDragView::SetRubberEdgeDragging(unsigned char)
SdrDragView::SetRubberEdgeDraggingLimit(unsigned short)
-SdrEditView::ImpBundleVirtObjOfMarkList()
SdrEditView::MoveLayer(String const&, unsigned short)
SdrEngineDefaults::LanguageHasChanged()
SdrEscherImport::CheckMonotypeSorts() const
@@ -891,7 +886,6 @@ SdrExchangeView::Paste(GDIMetaFile const&, Point const&, SdrObjList*, unsigned i
SdrExchangeView::YankMarked(unsigned long)
SdrGlobalData::GetCharClass()
SdrGlobalData::~SdrGlobalData()
-SdrGlueEditView::IsDeleteMarkedGluePointsPossible() const
SdrGluePoint::Draw(OutputDevice&, SdrObject const*) const
SdrGluePoint::Mirror(Point const&, Point const&, SdrObject const*)
SdrGrafObj::GetGDIMetaFile() const
@@ -1066,7 +1060,6 @@ SfxImageManager::SetImages(ToolBox&)
SfxImageManager::SetImages(ToolBox&, bool)
SfxInPlaceClient::GetActiveWindow(SfxObjectShell*, com::sun::star::uno::Reference<com::sun::star::embed::XEmbeddedObject> const&)
SfxInPlaceClient::IsObjectActive() const
-SfxItemPool::IsVer2_Impl() const
SfxItemPropertySetInfo::getMap() const
SfxItemSetHint::SfxItemSetHint(SfxItemSet*)
SfxListener::EndListening(unsigned short)
@@ -1728,7 +1721,6 @@ SwHTMLPosFlyFrms::Insert(SwHTMLPosFlyFrm* const&, unsigned short&)
SwHTMLPosFlyFrms::Insert(SwHTMLPosFlyFrm* const*, unsigned short)
SwHTMLPosFlyFrms::Insert(SwHTMLPosFlyFrms const*, unsigned short, unsigned short)
SwHTMLPosFlyFrms::Remove(SwHTMLPosFlyFrm* const&, unsigned short)
-SwHyphWrapper::LinkStubSpellError(void*, void*)
SwInsDBColumns::Insert(SwInsDBColumn* const&, unsigned short&)
SwInsDBColumns::Insert(SwInsDBColumn* const*, unsigned short)
SwInsDBColumns::Insert(SwInsDBColumns const*, unsigned short, unsigned short)