[Libreoffice-commits] .: 5 commits - editeng/source sfx2/inc sfx2/source svx/source sw/inc sw/source unusedcode.easy
Caolán McNamara
caolan at kemper.freedesktop.org
Wed Aug 10 03:50:27 PDT 2011
editeng/source/editeng/editobj.cxx | 4 -
editeng/source/items/bulitem.cxx | 2
sfx2/inc/sfx2/new.hxx | 2
sfx2/source/doc/new.cxx | 30 ----------
svx/source/dialog/framelink.cxx | 12 ----
svx/source/form/navigatortreemodel.cxx | 92 ---------------------------------
svx/source/inc/fmexpl.hxx | 4 -
sw/inc/printdata.hxx | 2
sw/inc/unotxdoc.hxx | 3 -
sw/source/core/view/printdata.cxx | 4 -
sw/source/ui/uno/unotxdoc.cxx | 14 +++--
unusedcode.easy | 36 +-----------
12 files changed, 22 insertions(+), 183 deletions(-)
New commits:
commit cd690d2e72be410058376c416a40ff5d918fb0f7
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Aug 10 11:49:07 2011 +0100
Resolves: fdo#39159 don't restore original view settings on temp documents
diff --git a/sw/inc/printdata.hxx b/sw/inc/printdata.hxx
index 6bd83c1..02ff7a3 100644
--- a/sw/inc/printdata.hxx
+++ b/sw/inc/printdata.hxx
@@ -269,7 +269,7 @@ public:
bool IsViewOptionAdjust() const { return m_pViewOptionAdjust != 0; }
bool NeedNewViewOptionAdjust( const ViewShell& ) const;
- void ViewOptionAdjustStart( ViewShell &rSh, const SwViewOption &rViewOptions );
+ void ViewOptionAdjustStart( ViewShell &rSh, const SwViewOption &rViewOptions, bool bIsTmpSelection );
void ViewOptionAdjust( SwPrintData const* const pPrtOptions );
void ViewOptionAdjustStop();
diff --git a/sw/inc/unotxdoc.hxx b/sw/inc/unotxdoc.hxx
index 7aad16d..bc21cf3 100644
--- a/sw/inc/unotxdoc.hxx
+++ b/sw/inc/unotxdoc.hxx
@@ -588,9 +588,10 @@ class SwViewOptionAdjust_Impl
{
ViewShell & m_rShell;
SwViewOption m_aOldViewOptions;
+ bool m_bIsTmpSelection;
public:
- SwViewOptionAdjust_Impl( ViewShell& rSh, const SwViewOption &rViewOptions );
+ SwViewOptionAdjust_Impl( ViewShell& rSh, const SwViewOption &rViewOptions, bool bIsTmpSelection );
~SwViewOptionAdjust_Impl();
void AdjustViewOptions( SwPrintData const* const pPrtOptions );
bool checkShell( const ViewShell& rCompare ) const
diff --git a/sw/source/core/view/printdata.cxx b/sw/source/core/view/printdata.cxx
index 893907f..497a5cb 100644
--- a/sw/source/core/view/printdata.cxx
+++ b/sw/source/core/view/printdata.cxx
@@ -113,13 +113,13 @@ bool SwRenderData::NeedNewViewOptionAdjust( const ViewShell& rCompare ) const
}
-void SwRenderData::ViewOptionAdjustStart( ViewShell &rSh, const SwViewOption &rViewOptions )
+void SwRenderData::ViewOptionAdjustStart( ViewShell &rSh, const SwViewOption &rViewOptions, bool bIsTmpSelection )
{
if (m_pViewOptionAdjust)
{
OSL_FAIL("error: there should be no ViewOptionAdjust active when calling this function" );
}
- m_pViewOptionAdjust = new SwViewOptionAdjust_Impl( rSh, rViewOptions );
+ m_pViewOptionAdjust = new SwViewOptionAdjust_Impl( rSh, rViewOptions, bIsTmpSelection );
}
diff --git a/sw/source/ui/uno/unotxdoc.cxx b/sw/source/ui/uno/unotxdoc.cxx
index 603773b..418dbf0 100644
--- a/sw/source/ui/uno/unotxdoc.cxx
+++ b/sw/source/ui/uno/unotxdoc.cxx
@@ -2551,7 +2551,7 @@ sal_Int32 SAL_CALL SwXTextDocument::getRendererCount(
if (m_pRenderData && m_pRenderData->NeedNewViewOptionAdjust( *pViewShell ) )
m_pRenderData->ViewOptionAdjustStop();
if (m_pRenderData && !m_pRenderData->IsViewOptionAdjust())
- m_pRenderData->ViewOptionAdjustStart( *pViewShell, *pViewShell->GetViewOptions() );
+ m_pRenderData->ViewOptionAdjustStart( *pViewShell, *pViewShell->GetViewOptions(), rSelection.hasValue() );
}
m_pRenderData->SetSwPrtOptions( new SwPrintData );
@@ -3833,15 +3833,21 @@ void SwXDocumentPropertyHelper::onChange()
m_pDoc->SetModified();
}
-SwViewOptionAdjust_Impl::SwViewOptionAdjust_Impl( ViewShell& rSh, const SwViewOption &rViewOptions ) :
+SwViewOptionAdjust_Impl::SwViewOptionAdjust_Impl( ViewShell& rSh, const SwViewOption &rViewOptions, bool bIsTmpSelection ) :
m_rShell( rSh ),
- m_aOldViewOptions( rViewOptions )
+ m_aOldViewOptions( rViewOptions ),
+ m_bIsTmpSelection( bIsTmpSelection )
{
}
SwViewOptionAdjust_Impl::~SwViewOptionAdjust_Impl()
{
- m_rShell.ApplyViewOptions( m_aOldViewOptions );
+ //fdo#39159 don't restore original view options on a temporary document
+ //selection, it triggers throwing away the current view. Presumably we can
+ //forget about it in the temporary document case as unimportant to restore
+ //the original view settings
+ if (!m_bIsTmpSelection)
+ m_rShell.ApplyViewOptions( m_aOldViewOptions );
}
void
commit e16221d3e0eb11958e20b8a1fd959c7055b9172e
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Aug 10 08:59:22 2011 +0100
ByteString::ConvertFromUnicode->rtl::OUStringToOString::toChar
diff --git a/editeng/source/editeng/editobj.cxx b/editeng/source/editeng/editobj.cxx
index 3ddf1e8..bc2a02e 100644
--- a/editeng/source/editeng/editobj.cxx
+++ b/editeng/source/editeng/editobj.cxx
@@ -1095,7 +1095,7 @@ void BinTextObject::StoreData( SvStream& rOStream ) const
for ( sal_uInt16 nChar = pAttr->GetStart(); nChar < pAttr->GetEnd(); nChar++ )
{
sal_Unicode cOld = pC->GetText().GetChar( nChar );
- char cConv = ByteString::ConvertFromUnicode( ConvertFontToSubsFontChar( hConv, cOld ), RTL_TEXTENCODING_SYMBOL );
+ char cConv = rtl::OUStringToOString(rtl::OUString(ConvertFontToSubsFontChar(hConv, cOld)), RTL_TEXTENCODING_SYMBOL).toChar();
if ( cConv )
aText.SetChar( nChar, cConv );
}
@@ -1120,7 +1120,7 @@ void BinTextObject::StoreData( SvStream& rOStream ) const
if ( !pC->GetAttribs().FindAttrib( EE_CHAR_FONTINFO, nChar ) )
{
sal_Unicode cOld = pC->GetText().GetChar( nChar );
- char cConv = ByteString::ConvertFromUnicode( ConvertFontToSubsFontChar( hConv, cOld ), RTL_TEXTENCODING_SYMBOL );
+ char cConv = rtl::OUStringToOString(rtl::OUString(ConvertFontToSubsFontChar(hConv, cOld)), RTL_TEXTENCODING_SYMBOL).toChar();
if ( cConv )
aText.SetChar( nChar, cConv );
}
diff --git a/editeng/source/items/bulitem.cxx b/editeng/source/items/bulitem.cxx
index 727ca3d..cd0430a 100644
--- a/editeng/source/items/bulitem.cxx
+++ b/editeng/source/items/bulitem.cxx
@@ -414,7 +414,7 @@ SvStream& SvxBulletItem::Store( SvStream& rStrm, sal_uInt16 /*nItemVersion*/ ) c
rStrm << nWidth;
rStrm << nStart;
rStrm << nJustify;
- rStrm << (char)ByteString::ConvertFromUnicode( cSymbol, aFont.GetCharSet() );
+ rStrm << rtl::OUStringToOString(rtl::OUString(cSymbol), aFont.GetCharSet()).toChar();
rStrm << nScale;
// UNICODE: rStrm << aPrevText;
commit c8484a5ddf8e58ae331f41c25825dc2eaef6bdd3
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Aug 10 08:58:38 2011 +0100
callcatcher: remove unused code
diff --git a/sfx2/source/doc/new.cxx b/sfx2/source/doc/new.cxx
index a016f73..7f05f54 100644
--- a/sfx2/source/doc/new.cxx
+++ b/sfx2/source/doc/new.cxx
@@ -260,8 +260,6 @@ public:
// Template name can only be obtained if IsTemplate() is TRUE
// erfragt werden
sal_Bool IsTemplate() const;
- String GetTemplateRegion() const;
- String GetTemplateName() const;
String GetTemplateFileName() const;
sal_uInt16 GetTemplateFlags()const;
@@ -485,24 +483,6 @@ String SfxNewFileDialog_Impl::GetTemplateFileName() const
//-------------------------------------------------------------------------
-String SfxNewFileDialog_Impl::GetTemplateRegion() const
-{
- if(!IsTemplate() || !aTemplates.GetRegionCount())
- return String();
- return aRegionLb.GetSelectEntry();
-}
-
-//-------------------------------------------------------------------------
-
-String SfxNewFileDialog_Impl::GetTemplateName() const
-{
- if(!IsTemplate() || !aTemplates.GetRegionCount())
- return String();
- return aTemplateLb.GetSelectEntry();
-}
-
-//-------------------------------------------------------------------------
-
void AdjustPosSize_Impl(Window *pWin, short nMoveOffset, short nSizeOffset)
{
Point aPos(pWin->GetPosPixel());
commit 4e113aec154f0e2d4b271081ef39434ac3596252
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Aug 10 08:57:49 2011 +0100
update list
diff --git a/unusedcode.easy b/unusedcode.easy
index 7f2646f..01c8447 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -1762,6 +1762,7 @@ SwRedlineDataParentSortArr::DeleteAndDestroy(unsigned short, unsigned short)
SwRedlineDataParentSortArr::Insert(SwRedlineDataParent* const&)
SwRedlineDataParentSortArr::Insert(SwRedlineDataParent* const*, unsigned short)
SwRedlineDataParentSortArr::Insert(SwRedlineDataParentSortArr const*, unsigned short, unsigned short)
+SwRenderData::NeedNewViewOptionAdjust(ViewShell const&) const
SwSections::DeleteAndDestroy(unsigned short, unsigned short)
SwSelBoxes::Insert(SwTableBox* const&, unsigned short&)
SwSelBoxes::Remove(SwTableBox* const&, unsigned short)
@@ -2634,6 +2635,7 @@ binfilter::Sw3Bytes::Replace(unsigned char const*, unsigned short, unsigned shor
binfilter::Sw3Bytes::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned char const&, void*), void*)
binfilter::Sw3IoImp::ExportTxtAttrs(binfilter::Sw3ExportTxtAttrs const*, unsigned short, unsigned short)
binfilter::Sw3IoImp::ExportTxtNode(binfilter::SwTxtNode const&, unsigned short, unsigned short, unsigned short, binfilter::SwInsHardBlankSoftHyph&)
+binfilter::Sw3IoImp::FindFlyFrm(unsigned long)
binfilter::Sw3Marks::GetPos(binfilter::Sw3Mark const*) const
binfilter::Sw3Marks::Insert(binfilter::Sw3Mark*)
binfilter::Sw3Marks::Remove(binfilter::Sw3Mark*)
commit a37338e74267db0a0a6d0fe453598f95611b134c
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Aug 9 22:32:52 2011 +0100
callcatcher: remove some unused methods
diff --git a/sfx2/inc/sfx2/new.hxx b/sfx2/inc/sfx2/new.hxx
index 23d2444..bb1250a 100644
--- a/sfx2/inc/sfx2/new.hxx
+++ b/sfx2/inc/sfx2/new.hxx
@@ -85,8 +85,6 @@ public:
// Returns sal_False, when '- No -' is set as Template
// Template names can only be obtained when IsTemplate() returns sal_True.
sal_Bool IsTemplate() const;
- String GetTemplateRegion() const;
- String GetTemplateName() const;
String GetTemplateFileName() const;
// load template methods
diff --git a/sfx2/source/doc/new.cxx b/sfx2/source/doc/new.cxx
index 0956c87..a016f73 100644
--- a/sfx2/source/doc/new.cxx
+++ b/sfx2/source/doc/new.cxx
@@ -682,16 +682,6 @@ sal_Bool SfxNewFileDialog::IsTemplate() const
return pImpl->IsTemplate();
}
//-------------------------------------------------------------------------
-String SfxNewFileDialog::GetTemplateRegion() const
-{
- return pImpl->GetTemplateRegion();
-}
-//-------------------------------------------------------------------------
-String SfxNewFileDialog::GetTemplateName() const
-{
- return pImpl->GetTemplateName();
-}
-//-------------------------------------------------------------------------
String SfxNewFileDialog::GetTemplateFileName() const
{
return pImpl->GetTemplateFileName();
diff --git a/svx/source/dialog/framelink.cxx b/svx/source/dialog/framelink.cxx
index 5d2a900..4b045f3 100644
--- a/svx/source/dialog/framelink.cxx
+++ b/svx/source/dialog/framelink.cxx
@@ -741,18 +741,6 @@ inline Polygon lclCreatePolygon( const PointVec& rPoints )
return Polygon( static_cast< sal_uInt16 >( rPoints.size() ), &rPoints[ 0 ] );
}
-/** Returns a polygon constructed from the four passed points. */
-Polygon lclCreatePolygon( const Point& rP1, const Point& rP2, const Point& rP3, const Point& rP4 )
-{
- PointVec aPoints;
- aPoints.reserve( 2 );
- aPoints.push_back( rP1 );
- aPoints.push_back( rP2 );
- aPoints.push_back( rP3 );
- aPoints.push_back( rP4 );
- return lclCreatePolygon( aPoints );
-}
-
/** Returns a polygon constructed from the five passed points. */
Polygon lclCreatePolygon( const Point& rP1, const Point& rP2, const Point& rP3, const Point& rP4, const Point& rP5 )
{
diff --git a/svx/source/form/navigatortreemodel.cxx b/svx/source/form/navigatortreemodel.cxx
index ff0bfc0..b098f54 100644
--- a/svx/source/form/navigatortreemodel.cxx
+++ b/svx/source/form/navigatortreemodel.cxx
@@ -960,53 +960,6 @@ namespace svxform
}
//------------------------------------------------------------------------
- sal_Bool NavigatorTreeModel::CheckEntry( FmEntryData* pEntryData )
- {
- RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "svx", "Ocke.Janssen at sun.com", "NavigatorTreeModel::CheckEntry" );
- //////////////////////////////////////////////////////////////////////
- // Nur Forms duerfen auf Doppeldeutigkeit untersucht werden
- if( !pEntryData->ISA(FmFormData) ) return sal_True;
-
- //////////////////////////////////////////////////////////////////////
- // ChildListe des Parents holen
- FmFormData* pParentData = (FmFormData*)pEntryData->GetParent();
- FmEntryDataList* pChildList;
- if( !pParentData )
- pChildList = GetRootList();
- else
- pChildList = pParentData->GetChildList();
-
- //////////////////////////////////////////////////////////////////////
- // In ChildListe nach doppelten Namen suchen
- ::rtl::OUString aChildText;
- FmEntryData* pChildData;
-
- for( size_t i = 0; i < pChildList->size(); i++ )
- {
- pChildData = pChildList->at( i );
- aChildText = pChildData->GetText();
-
- //////////////////////////////////////////////////////////////////////
- // Gleichen Eintrag gefunden
- if ( (aChildText == pEntryData->GetText())
- && (pEntryData!=pChildData)
- )
- {
-
-
- SQLContext aError;
- aError.Message = String(SVX_RES(RID_ERR_CONTEXT_ADDFORM));
- aError.Details = String(SVX_RES(RID_ERR_DUPLICATE_NAME));
- displayException(aError);
-
- return sal_False;
- }
- }
-
- return sal_True;
- }
-
- //------------------------------------------------------------------------
sal_Bool NavigatorTreeModel::Rename( FmEntryData* pEntryData, const ::rtl::OUString& rNewText )
{
RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "svx", "Ocke.Janssen at sun.com", "NavigatorTreeModel::Rename" );
@@ -1042,51 +995,6 @@ namespace svxform
return sal_True;
}
- //------------------------------------------------------------------------
- sal_Bool NavigatorTreeModel::IsNameAlreadyDefined( const ::rtl::OUString& rName, FmFormData* pParentData )
- {
- RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "svx", "Ocke.Janssen at sun.com", "NavigatorTreeModel::IsNameAlreadyDefined" );
- //////////////////////////////////////////////////////////////////////
- // Form in der Root
- if( !pParentData )
- {
- if (GetForms()->hasByName(rName))
- return sal_True;
- }
-
- //////////////////////////////////////////////////////////////////////
- // Restliche Components
- else
- {
- Reference< XNameContainer > xFormComponents(GetFormComponents(pParentData), UNO_QUERY);
- if (xFormComponents.is() && xFormComponents->hasByName(rName))
- return sal_True;
- }
-
- return sal_False;
- }
-
- //------------------------------------------------------------------------
- SdrObject* NavigatorTreeModel::GetSdrObj( FmControlData* pControlData )
- {
- RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "svx", "Ocke.Janssen at sun.com", "NavigatorTreeModel::GetSdrObj" );
- if (!pControlData || !m_pFormShell)
- return NULL;
-
- //////////////////////////////////////////////////////////////////////
- // In der Page das entsprechende SdrObj finden und selektieren
- Reference< XFormComponent > xFormComponent( pControlData->GetFormComponent());
- if (!xFormComponent.is())
- return NULL;
-
- FmFormView* pFormView = m_pFormShell->GetFormView();
- SdrPageView* pPageView = pFormView->GetSdrPageView();
- SdrPage* pPage = pPageView->GetPage();
-
- SdrObjListIter aIter( *pPage );
- return Search(aIter, xFormComponent);
- }
-
//------------------------------------------------------------------
SdrObject* NavigatorTreeModel::Search(SdrObjListIter& rIter, const Reference< XFormComponent > & xComp)
{
diff --git a/svx/source/inc/fmexpl.hxx b/svx/source/inc/fmexpl.hxx
index 9e8d9a7..02243f4 100644
--- a/svx/source/inc/fmexpl.hxx
+++ b/svx/source/inc/fmexpl.hxx
@@ -402,9 +402,8 @@ namespace svxform
void Remove( FmEntryData* pEntryData, sal_Bool bAlterModel = sal_False );
sal_Bool Rename( FmEntryData* pEntryData, const ::rtl::OUString& rNewText );
- sal_Bool IsNameAlreadyDefined( const ::rtl::OUString& rName, FmFormData* pParentData );
+
void Clear();
- sal_Bool CheckEntry( FmEntryData* pEntryData );
void SetModified( sal_Bool bMod=sal_True );
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > GetForms() const;
@@ -414,7 +413,6 @@ namespace svxform
FmEntryData* FindData( const ::rtl::OUString& rText, FmFormData* pParentData, sal_Bool bRecurs=sal_True );
FmEntryDataList* GetRootList() const { return m_pRootList; }
::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexContainer > GetFormComponents( FmFormData* pParentFormData );
- SdrObject* GetSdrObj( FmControlData* pControlData );
SdrObject* Search(SdrObjListIter& rIter, const ::com::sun::star::uno::Reference< ::com::sun::star::form::XFormComponent >& xComp);
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
diff --git a/unusedcode.easy b/unusedcode.easy
index 0ccf18f..7f2646f 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -1099,9 +1099,6 @@ SfxModule::IsActive() const
SfxModule::RegisterChildWindowContext(unsigned short, SfxChildWinContextFactory*)
SfxModuleArr_Impl::DeleteAndDestroy(unsigned short, unsigned short)
SfxNavigatorWrapper::GetChildWindowId()
-SfxNewFileDialog::GetTemplateName() const
-SfxNewFileDialog::GetTemplateRegion() const
-SfxNewFileDialog_Impl::LinkStubTemplateSelect(void*, void*)
SfxObjectList::GetFileName(unsigned short) const
SfxObjectShell::Count()
SfxObjectShell::CreateAndLoadObject(SfxItemSet const&, SfxFrame*)
@@ -1113,6 +1110,7 @@ SfxObjectShell::SetFlags(unsigned int)
SfxObjectShell::SetTemplate(unsigned char)
SfxObjectVerbsControl::RegisterControl(unsigned short, SfxModule*)
SfxOfficeDispatch::IsMasterUnoCommand() const
+SfxOleDateProperty::SfxOleDateProperty(int, com::sun::star::util::Date const&)
SfxOleString16Property::SfxOleString16Property(int, String const&)
SfxOrganizeDlg_Impl::OkHdl(Button*)
SfxPartChildWnd_Impl::GetChildWindowId()
@@ -2634,22 +2632,8 @@ binfilter::Sw3Bytes::Insert(binfilter::Sw3Bytes const*, unsigned short, unsigned
binfilter::Sw3Bytes::Replace(unsigned char const&, unsigned short)
binfilter::Sw3Bytes::Replace(unsigned char const*, unsigned short, unsigned short)
binfilter::Sw3Bytes::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned char const&, void*), void*)
-binfilter::Sw3IoImp::CloseValuePos16(unsigned short)
-binfilter::Sw3IoImp::CloseValuePos32(unsigned int)
-binfilter::Sw3IoImp::ExportNodeDrawFrmFmts(binfilter::SwTxtNode const&, unsigned short, unsigned short, unsigned short)
binfilter::Sw3IoImp::ExportTxtAttrs(binfilter::Sw3ExportTxtAttrs const*, unsigned short, unsigned short)
binfilter::Sw3IoImp::ExportTxtNode(binfilter::SwTxtNode const&, unsigned short, unsigned short, unsigned short, binfilter::SwInsHardBlankSoftHyph&)
-binfilter::Sw3IoImp::GetTblLineBoxFmtId(binfilter::SwFrmFmt*)
-binfilter::Sw3IoImp::IsSw40Export() const
-binfilter::Sw3IoImp::OpenValuePos16(unsigned short)
-binfilter::Sw3IoImp::OpenValuePos32(unsigned int)
-binfilter::Sw3IoImp::OutEmptyTxtNode(unsigned long, unsigned char)
-binfilter::Sw3IoImp::OutGrfNode(binfilter::SwNoTxtNode const&)
-binfilter::Sw3IoImp::OutNodeFlyFrames(unsigned long)
-binfilter::Sw3IoImp::OutNodeNum(binfilter::SwNodeNum const&)
-binfilter::Sw3IoImp::OutOLENode(binfilter::SwNoTxtNode const&)
-binfilter::Sw3IoImp::OutRepTxtNode(unsigned long)
-binfilter::Sw3IoImp::OutTxtAttrs(binfilter::SwTxtNode const&, unsigned short, unsigned short)
binfilter::Sw3Marks::GetPos(binfilter::Sw3Mark const*) const
binfilter::Sw3Marks::Insert(binfilter::Sw3Mark*)
binfilter::Sw3Marks::Remove(binfilter::Sw3Mark*)
@@ -2669,7 +2653,6 @@ binfilter::Sw3ULongs::Insert(binfilter::Sw3ULongs const*, unsigned short, unsign
binfilter::Sw3ULongs::Replace(unsigned int const&, unsigned short)
binfilter::Sw3ULongs::Replace(unsigned int const*, unsigned short, unsigned short)
binfilter::Sw3ULongs::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
-binfilter::SwAuthorityField::GetHandlePosition() const
binfilter::SwBookmarks::Insert(binfilter::SwBookmark* const&, unsigned short&)
binfilter::SwBookmarks::Insert(binfilter::SwBookmark* const*, unsigned short)
binfilter::SwBookmarks::Insert(binfilter::SwBookmarks const*, unsigned short, unsigned short)
@@ -2707,10 +2690,6 @@ binfilter::SwPosFlyFrms::Remove(unsigned short, unsigned short)
binfilter::SwRects::Replace(binfilter::SwRect const&, unsigned short)
binfilter::SwRects::Replace(binfilter::SwRect const*, unsigned short, unsigned short)
binfilter::SwRects::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::SwRect const&, void*), void*)
-binfilter::SwRedline::GetComment(unsigned short) const
-binfilter::SwRedline::GetRealType(unsigned short) const
-binfilter::SwRedline::GetStackCount() const
-binfilter::SwRedline::GetTimeStamp(unsigned short) const
binfilter::SwRubyList::DeleteAndDestroy(unsigned short, unsigned short)
binfilter::SwSelBoxes::Insert(binfilter::SwTableBox* const&, unsigned short&)
binfilter::SwSelBoxes::Remove(binfilter::SwTableBox* const&, unsigned short)
@@ -2798,7 +2777,6 @@ binfilter::XMLTextListAutoStylePoolNames_Impl::GetPos(rtl::OUString const*) cons
binfilter::XMLTextListAutoStylePoolNames_Impl::Remove(rtl::OUString*)
binfilter::XMLTextListAutoStylePool_Impl::GetPos(binfilter::XMLTextListAutoStylePoolEntry_Impl const*) const
binfilter::XMLTextListAutoStylePool_Impl::Remove(binfilter::XMLTextListAutoStylePoolEntry_Impl*)
-binfilter::XTextAttrSetItem::XTextAttrSetItem(binfilter::SfxItemPool*)
binfilter::_MapTblFrmFmts::Insert(binfilter::_MapTblFrmFmts const*, unsigned short, unsigned short, unsigned short)
binfilter::_MapTblFrmFmts::Remove(unsigned short, unsigned short)
binfilter::_MapTblFrmFmts::Replace(binfilter::_MapTblFrmFmt const&, unsigned short)
@@ -2838,13 +2816,7 @@ binfilter::_ZSortFlys_SAR::Replace(binfilter::_ZSortFly const*, 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&)
-binfilter::lcl_sw3io_IsBoxFmtShared(binfilter::SwFrmFmt&, binfilter::SwTableBox const&)
-binfilter::lcl_sw3io_IsLineFmtShared(binfilter::SwFrmFmt&, binfilter::SwTableLine const&)
binfilter::lcl_sw3io__ConvertNumTabStop(binfilter::SwCntntNode const&, long, binfilter::SfxItemSet&)
-binfilter::lcl_sw3io__IsInclUpperLevel(unsigned char)
-binfilter::lcl_sw3io_isTOXHeaderSection(binfilter::SwStartNode const&)
-binfilter::lcl_sw3sectn_NodeHasFlyOrMark(binfilter::Sw3IoImp&, unsigned long)
-binfilter::sw3io_countwords(String const&, String const&, unsigned long&, unsigned long&)
cairocanvas::CanvasHelper::flush() const
cairocanvas::CanvasHelper::getPalette()
cairocanvas::SpriteDeviceHelper::getSurface()
@@ -3874,7 +3846,6 @@ svx::SearchToolbarControllersManager::~SearchToolbarControllersManager()
svx::SvxShowCharSetItem::~SvxShowCharSetItem()
svx::ToolboxButtonColorUpdater::DrawChar(VirtualDevice&, Color const&)
svx::WrapField::WrapField(Window*, long)
-svx::frame::(anonymous namespace)::lclCreatePolygon(Point const&, Point const&, Point const&, Point const&)
svx::frame::Array::Array(unsigned long, unsigned long)
svx::frame::Array::Clear()
svx::frame::Array::DrawCell(OutputDevice&, unsigned long, unsigned long, Color const*) const
@@ -3904,9 +3875,6 @@ svxform::FmFilterNavigatorWinMgr::GetChildWindowId()
svxform::FmSearchParams::setIgnoreWidthCJK(unsigned char)
svxform::NavigatorFrameManager::GetChildWindowId()
svxform::NavigatorTree::IsDeleteAllowed()
-svxform::NavigatorTreeModel::CheckEntry(FmEntryData*)
-svxform::NavigatorTreeModel::GetSdrObj(FmControlData*)
-svxform::NavigatorTreeModel::IsNameAlreadyDefined(rtl::OUString const&, FmFormData*)
svxform::OStaticDataAccessTools::canDelete(com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> const&) const
svxform::OStaticDataAccessTools::getFieldNamesByCommandDescriptor(com::sun::star::uno::Reference<com::sun::star::sdbc::XConnection> const&, int, rtl::OUString const&, dbtools::SQLExceptionInfo*)
svxform::OStaticDataAccessTools::prependContextInfo(com::sun::star::sdbc::SQLException&, com::sun::star::uno::Reference<com::sun::star::uno::XInterface> const&, rtl::OUString const&, rtl::OUString const&) const
More information about the Libreoffice-commits
mailing list