diff options
-rw-r--r-- | lotuswordpro/source/filter/lwpfootnote.cxx | 10 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpfootnote.hxx | 1 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpfoundry.cxx | 24 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpfoundry.hxx | 1 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpobjfactory.cxx | 9 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwppara.cxx | 17 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwppara.hxx | 5 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwppara1.cxx | 13 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwptable.cxx | 48 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwptable.hxx | 46 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpuidoc.cxx | 5 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpuidoc.hxx | 1 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpverdocument.cxx | 5 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpverdocument.hxx | 1 | ||||
-rw-r--r-- | unusedcode.easy | 29 |
15 files changed, 0 insertions, 215 deletions
diff --git a/lotuswordpro/source/filter/lwpfootnote.cxx b/lotuswordpro/source/filter/lwpfootnote.cxx index 761af3c519e0..686c7d34d5c7 100644 --- a/lotuswordpro/source/filter/lwpfootnote.cxx +++ b/lotuswordpro/source/filter/lwpfootnote.cxx @@ -217,16 +217,6 @@ LwpCellLayout* LwpFootnote::GetCellLayout() } return NULL; } -/** - * @descr Get endnote supertable layout which contains current endnote content, not used now - */ -LwpEnSuperTableLayout* LwpFootnote::GetEnSuperTableLayout() -{ - LwpDocument* pDivision = GetFootnoteTableDivision(); - if(pDivision) - return static_cast<LwpEnSuperTableLayout*>(pDivision->GetEnSuperTableLayout()); - return NULL; -} /** * @descr Get division which footnote table contains current footnote content, copy from lwp source code diff --git a/lotuswordpro/source/filter/lwpfootnote.hxx b/lotuswordpro/source/filter/lwpfootnote.hxx index 680cc71ecdf8..054b126f6b7a 100644 --- a/lotuswordpro/source/filter/lwpfootnote.hxx +++ b/lotuswordpro/source/filter/lwpfootnote.hxx @@ -142,7 +142,6 @@ public: sal_uInt16 GetType(){ return m_nType;} private: LwpCellLayout* GetCellLayout(); - LwpEnSuperTableLayout* GetEnSuperTableLayout(); LwpDocument* GetFootnoteTableDivision(); LwpDocument* GetEndnoteDivision(LwpDocument* pPossible); LwpEnSuperTableLayout* FindFootnoteTableLayout(); diff --git a/lotuswordpro/source/filter/lwpfoundry.cxx b/lotuswordpro/source/filter/lwpfoundry.cxx index 364550fd4fea..30380c6530b7 100644 --- a/lotuswordpro/source/filter/lwpfoundry.cxx +++ b/lotuswordpro/source/filter/lwpfoundry.cxx @@ -253,30 +253,6 @@ LwpBookMark* LwpFoundry::GetBookMark(LwpObjectID objMarker) return NULL; } -sal_Bool LwpFoundry::FindBookMarkByName(OUString sName) -{ - LwpDLVListHeadHolder* pHeadHolder= static_cast - <LwpDLVListHeadHolder*>(m_BookMarkHead.obj()); - LwpObjectID* pObjID = pHeadHolder->GetHeadID(); - LwpBookMark* pBookMark; - if (pObjID) - pBookMark = static_cast<LwpBookMark*>(pObjID->obj()); - else - return sal_False; - - while (pBookMark) - { - if (pBookMark->IsRightName(sName)) - return sal_True; - pObjID = pBookMark->GetNext(); - if (pObjID) - pBookMark = static_cast<LwpBookMark*>(pObjID->obj()); - else - return sal_False; - } - return sal_False; -} - /** * @descr: Get next content * diff --git a/lotuswordpro/source/filter/lwpfoundry.hxx b/lotuswordpro/source/filter/lwpfoundry.hxx index 8e5741c3cd93..c16f7ab99169 100644 --- a/lotuswordpro/source/filter/lwpfoundry.hxx +++ b/lotuswordpro/source/filter/lwpfoundry.hxx @@ -286,7 +286,6 @@ private: public: inline LwpStyleManager* GetStyleManager() { return m_pStyleMgr;} LwpBookMark* GetBookMark(LwpObjectID objMarker); - sal_Bool FindBookMarkByName(OUString sName); LwpDropcapMgr* GetDropcapMgr(){return m_pDropcapMgr;} LwpContent* EnumContents(LwpContent* pContent); LwpSection* EnumSections(LwpSection* pSection); diff --git a/lotuswordpro/source/filter/lwpobjfactory.cxx b/lotuswordpro/source/filter/lwpobjfactory.cxx index ef0cc209e9fa..a14e1932e315 100644 --- a/lotuswordpro/source/filter/lwpobjfactory.cxx +++ b/lotuswordpro/source/filter/lwpobjfactory.cxx @@ -494,15 +494,6 @@ LwpObject* LwpObjectFactory::CreateObject(sal_uInt32 type, LwpObjectHeader &objH newObj = new LwpTableHeading(objHdr, m_pSvStream); break; } - /* some member variables can't be read until now - case VO_TABLEHINT: - { - newObj = new LwpTableHint(objHdr, m_pSvStream); - break; - } - */ - // end table - //add by case VO_CHBLKMARKER: { newObj = new LwpCHBlkMarker(objHdr, m_pSvStream); diff --git a/lotuswordpro/source/filter/lwppara.cxx b/lotuswordpro/source/filter/lwppara.cxx index d3324ddcb207..6c185b8989b5 100644 --- a/lotuswordpro/source/filter/lwppara.cxx +++ b/lotuswordpro/source/filter/lwppara.cxx @@ -907,23 +907,6 @@ void LwpPara::AddBreakAfter(XFContentContainer* pCont) } } -LwpVirtualLayout* LwpPara::GetLayoutWithMyStory() -{ - LwpStory* pMyStory = NULL; - if (!m_Story.IsNull()) - { - pMyStory = dynamic_cast<LwpStory*>(m_Story.obj(VO_STORY)); - if (!pMyStory) - { - return NULL; - } - - return pMyStory->GetLayout(NULL); - } - - return NULL; -} - LwpBulletStyleMgr* LwpPara::GetBulletStyleMgr() { if (m_pFoundry) diff --git a/lotuswordpro/source/filter/lwppara.hxx b/lotuswordpro/source/filter/lwppara.hxx index 7540a6fa2534..9bdac99e2f56 100644 --- a/lotuswordpro/source/filter/lwppara.hxx +++ b/lotuswordpro/source/filter/lwppara.hxx @@ -201,16 +201,11 @@ public: void FindLayouts();// for register pagelayout, add by , 02/20/2005 void RegisterTabStyle(XFParaStyle* pXFParaStyle); - // add by 04/13/2005 - LwpVirtualLayout* GetLayoutWithMyStory(); LwpBulletStyleMgr* GetBulletStyleMgr(); sal_uInt32 GetOrdinal(){ return m_nOrdinal;} sal_Bool operator <(LwpPara& Other); sal_Bool ComparePagePosition(LwpVirtualLayout* pPreLayout, LwpVirtualLayout* pNextLayout); -// rtl::OUString RegisterBulletStyle(); - // end add - sal_Bool IsNumberRight(); sal_Bool IsInCell(); void SetAllText(OUString sText); diff --git a/lotuswordpro/source/filter/lwppara1.cxx b/lotuswordpro/source/filter/lwppara1.cxx index b9656ced1521..19929675b0bf 100644 --- a/lotuswordpro/source/filter/lwppara1.cxx +++ b/lotuswordpro/source/filter/lwppara1.cxx @@ -644,19 +644,6 @@ sal_Bool LwpPara::ComparePagePosition(LwpVirtualLayout * pPreLayout, LwpVirtualL } /** - * @short check paragraph alignment - */ -sal_Bool LwpPara::IsNumberRight() -{ - LwpParaStyle* pStyle = dynamic_cast<LwpParaStyle*>(m_ParaStyle.obj()); - if (pStyle) - { - return pStyle->IsNumberRight(); - } - else - return sal_False; -} -/** * @short check paragraph in cell or not */ sal_Bool LwpPara::IsInCell() diff --git a/lotuswordpro/source/filter/lwptable.cxx b/lotuswordpro/source/filter/lwptable.cxx index 9e6c54b3f82a..a8d328cfa53a 100644 --- a/lotuswordpro/source/filter/lwptable.cxx +++ b/lotuswordpro/source/filter/lwptable.cxx @@ -159,54 +159,6 @@ void LwpTableHeading::Parse(IXFStream* /*pOutputStream*/) } /*****************************************************************************/ - LwpTableHint::LwpTableHint(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpObject(objHdr, pStrm) -{} - -LwpTableHint::~LwpTableHint() -{} - -void LwpTableHint::Read() -{ - cListNext.ReadIndexed(m_pObjStrm); - if (LwpFileHeader::m_nFileRevision < 0x0006) - m_pObjStrm->SkipExtra(); - - // not implemented yet - //lbool Problem; - // ?Problem = cStart.QuickReadNonEmbedded(m_pObjStrm); - - cLayout.ReadIndexed(m_pObjStrm); - cContent.ReadIndexed(m_pObjStrm); - cFlags = m_pObjStrm->QuickReaduInt8(); - cParent.ReadIndexed(m_pObjStrm); - //cNumberHint.QuickRead (m_pObjStrm); - cLineNumber = m_pObjStrm->QuickReaduInt32(); - cPageHint.ReadIndexed (m_pObjStrm); - - m_pObjStrm->SkipExtra (); - - //CContentHint(pFile, pLoader); - - cRow = m_pObjStrm->QuickReaduInt16(); - cCellHint.Read (m_pObjStrm); - cRowContinued = (sal_Bool)m_pObjStrm->QuickReaduInt16(); - - cTable.ReadIndexed(m_pObjStrm); - //if (!cTable.PointerTest()) - // cTable = NullObjPtr; - - //cCellNumberHint.QuickRead (m_pObjStrm); - LwpObjectID cList; - cList.ReadIndexed(m_pObjStrm); - - m_pObjStrm->SkipExtra(); -} - -void LwpTableHint::Parse(IXFStream* /*pOutputStream*/) -{ -} - - /*****************************************************************************/ LwpParallelColumns::LwpParallelColumns(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpTable(objHdr, pStrm) { } diff --git a/lotuswordpro/source/filter/lwptable.hxx b/lotuswordpro/source/filter/lwptable.hxx index d04564658041..43e750ca600a 100644 --- a/lotuswordpro/source/filter/lwptable.hxx +++ b/lotuswordpro/source/filter/lwptable.hxx @@ -153,52 +153,6 @@ protected: /** * @brief - * - */ -class LwpTableHint : public LwpObject -{ -public: - LwpTableHint(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpTableHint(); - - virtual void Parse(IXFStream* pOutputStream); -protected: - void Read(); - sal_uInt16 cRow; - LwpContentHintHead cCellHint; - sal_Bool cRowContinued; - LwpObjectID cTable; - //CCellNumberHintHead cCellNumberHint; - - LwpObjectID cListNext; - - LwpFribPtr cStart; - LwpObjectID cLayout; // if the layout is complex then we - // store the parent not the left or - // right - LwpObjectID cContent; - sal_uInt8 cFlags; - LwpObjectID cParent; - //CNumberHintHead cNumberHint; - sal_uInt32 cLineNumber; - LwpObjectID cPageHint; // the page hint we belong to - - // cFlags - enum - { - HF_INVALID = 0x01, // hint should not be used to start flowing - HF_LASTPAGE = 0x02, // content ends with this hint - HF_REGISTERED = 0x04, // the hint has been registered with a - // paragraph - HF_DIDBULLET = 0x08, // We flowed bullet text right before - // the end of this stream - HF_PROBLEMPARA = 0x10 // This hint's paragraph changed from disk - }; - - -}; -/** - * @brief * VO_TABLEHEADING object */ class LwpTableHeading : public LwpTable diff --git a/lotuswordpro/source/filter/lwpuidoc.cxx b/lotuswordpro/source/filter/lwpuidoc.cxx index 5d5b2f827426..fbd96e1de46d 100644 --- a/lotuswordpro/source/filter/lwpuidoc.cxx +++ b/lotuswordpro/source/filter/lwpuidoc.cxx @@ -64,11 +64,6 @@ #include "lwpuidoc.hxx" -LwpUIDocument::LwpUIDocument() - : m_nFlags(DOC_LOCKED) -{} - - LwpUIDocument::LwpUIDocument(LwpObjectStream *pStrm) : m_nFlags(DOC_LOCKED) { diff --git a/lotuswordpro/source/filter/lwpuidoc.hxx b/lotuswordpro/source/filter/lwpuidoc.hxx index 45ff59b4b48e..5815f21998bf 100644 --- a/lotuswordpro/source/filter/lwpuidoc.hxx +++ b/lotuswordpro/source/filter/lwpuidoc.hxx @@ -127,7 +127,6 @@ public: class LwpUIDocument { public: - LwpUIDocument(); LwpUIDocument(LwpObjectStream *pStrm); ~LwpUIDocument(); private: diff --git a/lotuswordpro/source/filter/lwpverdocument.cxx b/lotuswordpro/source/filter/lwpverdocument.cxx index debc1e30f680..5b76c6b0d60e 100644 --- a/lotuswordpro/source/filter/lwpverdocument.cxx +++ b/lotuswordpro/source/filter/lwpverdocument.cxx @@ -104,9 +104,4 @@ void LwpVerDocument::RegisterStyle() pXFStyleManager->AddStyle(pDefault); } -sal_uInt32 LwpVerDocument::GetTabSpacing() -{ - return m_nTabSpacing; -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/lotuswordpro/source/filter/lwpverdocument.hxx b/lotuswordpro/source/filter/lwpverdocument.hxx index b0e9078144ff..a1b6cf00beca 100644 --- a/lotuswordpro/source/filter/lwpverdocument.hxx +++ b/lotuswordpro/source/filter/lwpverdocument.hxx @@ -78,7 +78,6 @@ public: ~LwpVerDocument(){} void Read(); virtual void RegisterStyle(); - sal_uInt32 GetTabSpacing(); private: sal_uInt32 m_nTabSpacing; }; diff --git a/unusedcode.easy b/unusedcode.easy index 0544e92343c4..1ebf4e05ad44 100644 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -436,8 +436,6 @@ LwpDocData::SkipExtra(LwpSvStream*) LwpDocument::GetMaxNumberOfPages() LwpDocument::ParseMasterDoc(IXFStream*) LwpFootnote::FindFootnoteTable() -LwpFootnote::GetEnSuperTableLayout() -LwpFoundry::FindBookMarkByName(rtl::OUString) LwpFribTable::Parse(IXFStream*) LwpGraphicObject::GetRectIn100thMM() LwpGraphicObject::GetRectInCM() @@ -452,8 +450,6 @@ LwpObject::LwpObject() LwpObjectID::GetBuffer(char*) LwpObjectID::ReadCompressed(LwpSvStream*, LwpObjectID&) LwpObjectStream::QuickReadInt8(bool*) -LwpPara::GetLayoutWithMyStory() -LwpPara::IsNumberRight() LwpPara::OverrideTab(LwpTabOverride*, LwpTabOverride*, XFParaStyle*) LwpPlacableLayout::GetRelativeDistance() LwpPlacableLayout::GetRelativeFromWhere() @@ -463,9 +459,6 @@ LwpRowHeadingLayout::GetRowLayout() LwpSortOption::Skip(LwpObjectStream*) LwpStory::XFConvertFrame(XFContentContainer*) LwpSuperTableLayout::ParseFrame(XFFrame*) -LwpTableHint::LwpTableHint(LwpObjectHeader&, LwpSvStream*) -LwpUIDocument::LwpUIDocument() -LwpVerDocument::GetTabSpacing() MSDffImportRecords::Insert(MSDffImportRecords const*, unsigned short, unsigned short) MSDffImportRecords::Insert(SvxMSDffImportRec* const&, unsigned short&) MSDffImportRecords::Insert(SvxMSDffImportRec* const*, unsigned short) @@ -2369,15 +2362,10 @@ binfilter::B3dEntityBucketMemArr::Insert(binfilter::B3dEntityBucketMemArr const* binfilter::B3dEntityBucketMemArr::Replace(char const*&, unsigned short) binfilter::B3dEntityBucketMemArr::Replace(char const**, unsigned short, unsigned short) binfilter::B3dEntityBucketMemArr::_ForEach(unsigned short, unsigned short, unsigned char (*)(char const*&, void*), void*) -binfilter::BasicErrorManager::GetFirstError() -binfilter::BasicErrorManager::GetNextError() -binfilter::BasicManager::ClearErrors() -binfilter::BasicManager::HasErrors() binfilter::CharPosArray::Insert(binfilter::CharPosArray const*, unsigned short, unsigned short, unsigned short) binfilter::CharPosArray::Replace(int const&, unsigned short) binfilter::CharPosArray::Replace(int const*, unsigned short, unsigned short) binfilter::CharPosArray::_ForEach(unsigned short, unsigned short, unsigned char (*)(int const&, void*), void*) -binfilter::ContainerSorter::DoSort(unsigned long, unsigned long) const binfilter::DbgName_CntBoolItem() binfilter::DbgName_CntEnumItem() binfilter::DbgName_SfxEnumItemInterface() @@ -2395,14 +2383,12 @@ binfilter::EECharAttribArray::Replace(binfilter::EECharAttrib const&, unsigned s binfilter::EECharAttribArray::Replace(binfilter::EECharAttrib const*, unsigned short, unsigned short) binfilter::EECharAttribArray::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::EECharAttrib const&, void*), void*) binfilter::EditEngine::IsModified() const -binfilter::FmFormPageImpl::write(com::sun::star::uno::Reference<com::sun::star::io::XObjectOutputStream> const&) const binfilter::GeometryIndexValueBucketMemArr::Insert(binfilter::GeometryIndexValueBucketMemArr const*, unsigned short, unsigned short, unsigned short) binfilter::GeometryIndexValueBucketMemArr::Replace(char const*&, unsigned short) binfilter::GeometryIndexValueBucketMemArr::Replace(char const**, unsigned short, unsigned short) binfilter::GeometryIndexValueBucketMemArr::_ForEach(unsigned short, unsigned short, unsigned char (*)(char const*&, void*), void*) binfilter::GetLangName(unsigned short) binfilter::GetPortionName(unsigned short) -binfilter::GetPrepName(binfilter::PrepareHint) binfilter::ImpSvtData::~ImpSvtData() binfilter::InsCapOptArr::Insert(binfilter::InsCapOptArr const*, unsigned short, unsigned short) binfilter::InsCapOptArr::Insert(binfilter::InsCaptionOpt* const&, unsigned short&) @@ -2446,9 +2432,6 @@ binfilter::ScConditionalFormats_Impl::Insert(binfilter::ScConditionalFormats_Imp binfilter::ScConditionalFormats_Impl::Remove(binfilter::ScConditionalFormat* const&, unsigned short) binfilter::ScConditionalFormats_Impl::Remove(unsigned short, unsigned short) binfilter::ScDBData::IsBeyond(unsigned short) const -binfilter::ScDocument::GetWeightedCount() const -binfilter::ScDocument::SetConditionalUsed(unsigned long) -binfilter::ScDocument::SetValidationUsed(unsigned long) binfilter::ScFieldChangerEditEngine::ConvertFields() binfilter::ScFieldChangerEditEngine::ScFieldChangerEditEngine(binfilter::SfxItemPool*, unsigned char) binfilter::ScMultipleWriteHeader::ScMultipleWriteHeader(SvStream&, unsigned int) @@ -2458,8 +2441,6 @@ binfilter::ScMyDelAction::~ScMyDelAction() binfilter::ScMyMoveAction::~ScMyMoveAction() binfilter::ScRangeData::IsBeyond(unsigned short) const binfilter::ScRangeFindList::~ScRangeFindList() -binfilter::ScStyleSheetPool::SetForceStdName(String const*) -binfilter::ScTokenArray::ExportRecalcMode40() const binfilter::ScValidationDataList::ResetUsed() binfilter::ScValidationEntries_Impl::Insert(binfilter::ScValidationData* const&, unsigned short&) binfilter::ScValidationEntries_Impl::Insert(binfilter::ScValidationData* const*, unsigned short) @@ -2471,7 +2452,6 @@ binfilter::ScViewData::WriteUserData(String&) binfilter::ScXMLImportWrapper::Export(unsigned char) binfilter::ScXMLImportWrapper::Import(unsigned char) binfilter::ScXMLImportWrapper::ScXMLImportWrapper(binfilter::ScDocument&, binfilter::SfxMedium*, binfilter::SvStorage*) -binfilter::SchXMLWrapper::Export() binfilter::SchXMLWrapper::SchXMLWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>&, binfilter::SvStorage&, unsigned char) binfilter::ScriptTypePosInfos::Insert(binfilter::ScriptTypePosInfos const*, unsigned short, unsigned short, unsigned short) binfilter::ScriptTypePosInfos::Replace(binfilter::ScriptTypePosInfo const&, unsigned short) @@ -2485,7 +2465,6 @@ binfilter::SdrUnoControlAccessArr::Insert(binfilter::SdrUnoControlAccess* const& binfilter::SdrUnoControlAccessArr::Insert(binfilter::SdrUnoControlAccess* const*, unsigned short) binfilter::SdrUnoControlAccessArr::Insert(binfilter::SdrUnoControlAccessArr const*, unsigned short, unsigned short) binfilter::SdrUnoControlAccessArr::Remove(binfilter::SdrUnoControlAccess* const&, unsigned short) -binfilter::SfxConfigManagerImExport_Impl::Export(SotStorage*, SotStorage*) binfilter::SfxDocumentInfo::SavePropertySet(binfilter::SvStorage*) const binfilter::SfxHintPoster::LinkStubDoEvent_Impl(void*, void*) binfilter::SfxItemModifyArr_Impl::Insert(binfilter::SfxItemModifyArr_Impl const*, unsigned short, unsigned short, unsigned short) @@ -2513,7 +2492,6 @@ binfilter::ShellResource::~ShellResource() binfilter::SmFntFmtListEntryArr::Insert(binfilter::SmFntFmtListEntryArr const*, unsigned short, unsigned short, unsigned short) binfilter::SmFntFmtListEntryArr::Remove(unsigned short, unsigned short) binfilter::SmFntFmtListEntryArr::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::SmFntFmtListEntry const&, void*), void*) -binfilter::SmXMLWrapper::WriteThroughComponent(binfilter::SvStorage*, com::sun::star::uno::Reference<com::sun::star::lang::XComponent>, char const*, com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>&, com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet>&, char const*, unsigned char) binfilter::SoDll::~SoDll() binfilter::SortedPositions::Insert(binfilter::SortedPositions const*, unsigned short, unsigned short) binfilter::SortedPositions::Insert(unsigned int const&, unsigned short&) @@ -2666,10 +2644,6 @@ binfilter::SwOLELRUCache::Remove(binfilter::SwOLEObj&) binfilter::SwOutlineNodes::Insert(binfilter::SwNode* const&, unsigned short&) binfilter::SwOutlineNodes::Insert(binfilter::SwNode* const*, unsigned short) binfilter::SwOutlineNodes::Insert(binfilter::SwOutlineNodes const*, unsigned short, unsigned short) -binfilter::SwPageIter::GetPageDesc() const -binfilter::SwPageIter::GetPosition(binfilter::SwPosition&) const -binfilter::SwPageIter::NextPage() -binfilter::SwPageIter::SwPageIter(binfilter::SwDoc const&, binfilter::SwPosition const&) binfilter::SwPosFlyFrm::SwPosFlyFrm(binfilter::SwNodeIndex const&, binfilter::SwFrmFmt const*, unsigned short) binfilter::SwPosFlyFrms::Insert(binfilter::SwPosFlyFrm* const&) binfilter::SwPosFlyFrms::Insert(binfilter::SwPosFlyFrm* const&, unsigned short&) @@ -2699,7 +2673,6 @@ binfilter::SwTableSortBoxes::Insert(binfilter::SwTableBox* const&, unsigned shor binfilter::SwTableSortBoxes::Insert(binfilter::SwTableBox* const*, unsigned short) binfilter::SwTableSortBoxes::Insert(binfilter::SwTableSortBoxes const*, unsigned short, unsigned short) binfilter::SwTblBoxFormula::GetTableBox() -binfilter::SwViewImp::Init(binfilter::SwViewOption const*) binfilter::SwXBookmarkPortionArr::DeleteAndDestroy(unsigned short, unsigned short) binfilter::SwXBookmarkPortionArr::Insert(binfilter::SwXBookmarkPortionArr const*, unsigned short, unsigned short) binfilter::SwXBookmarkPortionArr::Insert(binfilter::SwXBookmarkPortion_Impl* const&, unsigned short&) @@ -2726,7 +2699,6 @@ binfilter::SwpHtStart::Insert(binfilter::SwTxtAttr const*&, unsigned short&) binfilter::SwpHtStart::Insert(binfilter::SwTxtAttr const**, unsigned short) binfilter::SwpHtStart::Insert(binfilter::SwpHtStart const*, unsigned short, unsigned short) binfilter::SwpHtStart::Remove(binfilter::SwTxtAttr const*&, unsigned short) -binfilter::ViewShell::Init(binfilter::SwViewOption const*) binfilter::W4WStyleIdTab::Insert(binfilter::W4WStyleIdTab const*, unsigned short, unsigned short) binfilter::W4WStyleIdTab::Insert(binfilter::W4WStyleIdTabEntry* const&, unsigned short&) binfilter::W4WStyleIdTab::Insert(binfilter::W4WStyleIdTabEntry* const*, unsigned short) @@ -2805,7 +2777,6 @@ binfilter::_ZSortFlys_SAR::Replace(binfilter::_ZSortFly const&, unsigned short) binfilter::_ZSortFlys_SAR::Replace(binfilter::_ZSortFly const*, unsigned short, unsigned short) binfilter::_ZSortFlys_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::_ZSortFly const&, void*), void*) binfilter::bf_OfficeWrapper::impl_createInstance(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&) -binfilter::frm::OErrorBroadcaster::onError(com::sun::star::sdbc::SQLException const&, rtl::OUString const&) cairocanvas::CanvasHelper::flush() const cairocanvas::CanvasHelper::getPalette() cairocanvas::SpriteDeviceHelper::getSurface() |