[Libreoffice-commits] core.git: 7 commits - basic/source chart2/source cui/source editeng/source framework/source include/basic sc/inc sc/source sd/source sfx2/source sw/source unusedcode.easy
Caolán McNamara
caolanm at redhat.com
Mon Feb 2 13:08:34 PST 2015
basic/source/classes/sbxmod.cxx | 5 ----
chart2/source/view/charttypes/BarChart.cxx | 3 --
cui/source/dialogs/sdrcelldlg.cxx | 4 ---
cui/source/inc/sdrcelldlg.hxx | 3 --
editeng/source/editeng/impedit2.cxx | 2 -
framework/source/uielement/toolbarsmenucontroller.cxx | 2 -
include/basic/sbmod.hxx | 1
sc/inc/attrib.hxx | 4 ---
sc/inc/grouparealistener.hxx | 2 -
sc/source/core/data/attrib.cxx | 20 ------------------
sc/source/core/tool/grouparealistener.cxx | 10 ---------
sc/source/ui/app/uiitems.cxx | 20 ------------------
sc/source/ui/dbgui/PivotLayoutTreeListData.cxx | 10 +++++----
sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx | 10 +++++----
sc/source/ui/docshell/docsh2.cxx | 8 -------
sc/source/ui/inc/docsh.hxx | 4 ---
sc/source/ui/inc/uiitems.hxx | 5 ----
sd/source/ui/func/fuexpand.cxx | 2 -
sfx2/source/dialog/tplcitem.cxx | 8 +------
sw/source/filter/html/htmlbas.cxx | 9 ++------
unusedcode.easy | 15 -------------
21 files changed, 21 insertions(+), 126 deletions(-)
New commits:
commit 1746c886362b8525b04365dd6b7203b8098b99ba
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Feb 2 21:04:28 2015 +0000
Related: fdo#88455 crash using delete in available fields
Change-Id: I4ac5fe6f42b425ee96124b2dde39ff397a081638
diff --git a/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx b/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
index 3b9b4f1..3e65370 100644
--- a/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
+++ b/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
@@ -253,12 +253,14 @@ void ScPivotLayoutTreeListData::KeyInput(const KeyEvent& rKeyEvent)
vcl::KeyCode aCode = rKeyEvent.GetKeyCode();
sal_uInt16 nCode = aCode.GetCode();
- switch (nCode)
+ if (nCode == KEY_DELETE)
{
- case KEY_DELETE:
- GetModel()->Remove(GetCurEntry());
- return;
+ const SvTreeListEntry* pEntry = GetCurEntry();
+ if (pEntry)
+ GetModel()->Remove(pEntry);
+ return;
}
+
SvTreeListBox::KeyInput(rKeyEvent);
}
diff --git a/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx b/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx
index 1780161..3644f84 100644
--- a/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx
+++ b/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx
@@ -80,12 +80,14 @@ void ScPivotLayoutTreeListLabel::KeyInput(const KeyEvent& rKeyEvent)
vcl::KeyCode aCode = rKeyEvent.GetKeyCode();
sal_uInt16 nCode = aCode.GetCode();
- switch (nCode)
+ if (nCode == KEY_DELETE)
{
- case KEY_DELETE:
- GetModel()->Remove(GetCurEntry());
- return;
+ const SvTreeListEntry* pEntry = GetCurEntry();
+ if (pEntry)
+ GetModel()->Remove(pEntry);
+ return;
}
+
SvTreeListBox::KeyInput(rKeyEvent);
}
commit 7ca0d2d8e174225d93a8b9d91d45192c75d1f56c
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Feb 2 20:57:08 2015 +0000
coverity#1267657 Logically dead code
Change-Id: I50bb5d47c5f430818237308a691306dc097d245e
diff --git a/chart2/source/view/charttypes/BarChart.cxx b/chart2/source/view/charttypes/BarChart.cxx
index c75b1a6..168fab6 100644
--- a/chart2/source/view/charttypes/BarChart.cxx
+++ b/chart2/source/view/charttypes/BarChart.cxx
@@ -87,8 +87,7 @@ drawing::Direction3D BarChart::getPreferredDiagramAspectRatio() const
{
aRet = drawing::Direction3D(1.0,-1.0,1.0);
BarPositionHelper* pPosHelper = dynamic_cast<BarPositionHelper*>(&( this->getPlottingPositionHelper( MAIN_AXIS_INDEX) ) );
- assert(pPosHelper);
- if(pPosHelper)
+ if (pPosHelper)
{
drawing::Direction3D aScale( pPosHelper->getScaledLogicWidth() );
if(aScale.DirectionX!=0.0)
commit 3e05f9844b538529307ac9cc18b06daf7e777abf
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Feb 2 20:53:49 2015 +0000
coverity#1267655 Logically dead code
Change-Id: I2d4f2c1049302eb488e2c6ef3a7142c42c7cb8e9
diff --git a/editeng/source/editeng/impedit2.cxx b/editeng/source/editeng/impedit2.cxx
index da28934..d294ef3 100644
--- a/editeng/source/editeng/impedit2.cxx
+++ b/editeng/source/editeng/impedit2.cxx
@@ -3019,7 +3019,7 @@ EditPaM ImpEditEngine::GetPaM( Point aDocPos, bool bSmart )
nPortion++;
pPortion = GetParaPortions().SafeGetObject( nPortion );
}
- assert(pPortion); //No visible paragraph found: GetPaM
+ SAL_WARN_IF(!pPortion, "editeng", "worrying lack of any visible paragraph");
if (!pPortion)
return aPaM;
return GetPaM(pPortion, aDocPos, bSmart);
commit 51bd386031d2f2e9cfde0c18f5868267ae12ac56
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Feb 2 20:52:21 2015 +0000
coverity#1267648 Logically dead code
Change-Id: If33260b5e8af360fba7dd2da296b8b73fc9db654
diff --git a/framework/source/uielement/toolbarsmenucontroller.cxx b/framework/source/uielement/toolbarsmenucontroller.cxx
index 3cbfc91..b95c2dc 100644
--- a/framework/source/uielement/toolbarsmenucontroller.cxx
+++ b/framework/source/uielement/toolbarsmenucontroller.cxx
@@ -553,7 +553,7 @@ void SAL_CALL ToolbarsMenuController::statusChanged( const FeatureStateEvent& Ev
VCLXPopupMenu* pXPopupMenu = static_cast<VCLXPopupMenu *>(VCLXMenu::GetImplementation( xPopupMenu ));
PopupMenu* pVCLPopupMenu = pXPopupMenu ? static_cast<PopupMenu *>(pXPopupMenu->GetMenu()) : NULL;
- assert(pVCLPopupMenu);
+ SAL_WARN_IF(!pVCLPopupMenu, "framework", "worrying lack of popup menu");
if (!pVCLPopupMenu)
return;
commit c61af284a85a95d14d4dee113b3ad12648d1cb64
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Feb 2 20:50:03 2015 +0000
coverity#1267659 Logically dead code
Change-Id: I0130c70a281e1ea6a82aa4f41be4b4f0b473a958
diff --git a/sd/source/ui/func/fuexpand.cxx b/sd/source/ui/func/fuexpand.cxx
index 6eebb5b..0f54f33 100644
--- a/sd/source/ui/func/fuexpand.cxx
+++ b/sd/source/ui/func/fuexpand.cxx
@@ -181,7 +181,7 @@ void FuExpandPage::DoExecute( SfxRequest& )
// create title text objects
SdrTextObj* pTextObj = static_cast<SdrTextObj*>(pPage->GetPresObj(PRESOBJ_TITLE));
- assert(pTextObj);
+ SAL_WARN_IF(!pTextObj, "sd.core", "worrying lack of PRESOBJ_TITLE object");
if (!pTextObj)
continue;
commit cc4954c484e71d60a84b41b196a7cde37977a6cb
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Feb 2 20:40:40 2015 +0000
seeing as it assumed it was non-null since day 0, so can we
Change-Id: I64632ecaab720c9c8d6be0b597b990b55682f296
diff --git a/sfx2/source/dialog/tplcitem.cxx b/sfx2/source/dialog/tplcitem.cxx
index aad39a0..3d07fb2 100644
--- a/sfx2/source/dialog/tplcitem.cxx
+++ b/sfx2/source/dialog/tplcitem.cxx
@@ -102,12 +102,8 @@ void SfxTemplateControllerItem::StateChanged( sal_uInt16 nSID, SfxItemState eSta
nWaterCanState = 0xff;
else if( eState == SfxItemState::DEFAULT )
{
- const SfxBoolItem *pStateItem = PTR_CAST(SfxBoolItem, pItem);
- assert(pStateItem); //BoolItem expected
- if (pStateItem)
- nWaterCanState = pStateItem->GetValue() ? 1 : 0;
- else
- nWaterCanState = 0xff;
+ const SfxBoolItem& rStateItem = dynamic_cast<const SfxBoolItem&>(*pItem);
+ nWaterCanState = rStateItem.GetValue() ? 1 : 0;
}
//not necessary if the last event is still on the way
if(!nUserEventId)
diff --git a/sw/source/filter/html/htmlbas.cxx b/sw/source/filter/html/htmlbas.cxx
index 3350345..e91c1c09 100644
--- a/sw/source/filter/html/htmlbas.cxx
+++ b/sw/source/filter/html/htmlbas.cxx
@@ -278,10 +278,7 @@ void SwHTMLWriter::OutBasic()
SbxArray *pModules = pBasic->GetModules();
for( sal_uInt16 j=0; j<pModules->Count(); j++ )
{
- const SbModule *pModule = PTR_CAST( SbModule, pModules->Get(j) );
- assert(pModule); //Wo ist das Modul?
- if (!pModule)
- continue;
+ const SbModule &rModule = dynamic_cast<const SbModule&>(*pModules->Get(j));
OUString sLang(SVX_MACRO_LANGUAGE_STARBASIC);
ScriptType eType = STARBASIC;
@@ -302,9 +299,9 @@ void SwHTMLWriter::OutBasic()
.WriteCharPtr( "\">" );
}
- const OUString& rModName = pModule->GetName();
+ const OUString& rModName = rModule.GetName();
Strm().WriteCharPtr( SAL_NEWLINE_STRING ); // nicht einruecken!
- HTMLOutFuncs::OutScript( Strm(), GetBaseURL(), pModule->GetSource(),
+ HTMLOutFuncs::OutScript( Strm(), GetBaseURL(), rModule.GetSource(),
sLang, eType, aEmptyOUStr,
&rLibName, &rModName,
eDestEnc, &aNonConvertableCharacters );
commit d41b8ac9e53d3cbe05bed171f27c76cc01ea742f
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Feb 2 20:33:31 2015 +0000
callcatcher: shave off a few more
Change-Id: Ie48cf7f89c8c826e56409c2493e1e1250086f10a
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index b3b7fd0..05fdd84 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -871,11 +871,6 @@ void SbModule::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
// The setting of the source makes the image invalid
// and scans the method definitions newly in
-void SbModule::SetSource( const OUString& r )
-{
- SetSource32( r );
-}
-
void SbModule::SetSource32( const OUString& r )
{
// Default basic mode to library container mode, but.. allow Option VBASupport 0/1 override
diff --git a/cui/source/dialogs/sdrcelldlg.cxx b/cui/source/dialogs/sdrcelldlg.cxx
index 48d4e44..392d9fb 100644
--- a/cui/source/dialogs/sdrcelldlg.cxx
+++ b/cui/source/dialogs/sdrcelldlg.cxx
@@ -66,8 +66,4 @@ void SvxFormatCellsDialog::PageCreated( sal_uInt16 nId, SfxTabPage &rPage )
SfxTabDialog::PageCreated( nId, rPage );
}
-void SvxFormatCellsDialog::Apply()
-{
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cui/source/inc/sdrcelldlg.hxx b/cui/source/inc/sdrcelldlg.hxx
index 1e7146a..0880505 100644
--- a/cui/source/inc/sdrcelldlg.hxx
+++ b/cui/source/inc/sdrcelldlg.hxx
@@ -38,9 +38,6 @@ private:
sal_uInt16 m_nAreaPageId;
sal_uInt16 m_nBorderPageId;
-protected:
- void Apply();
-
public:
SvxFormatCellsDialog( vcl::Window* pParent, const SfxItemSet* pAttr, SdrModel* pModel );
diff --git a/include/basic/sbmod.hxx b/include/basic/sbmod.hxx
index 3af8dac..2fd933f 100644
--- a/include/basic/sbmod.hxx
+++ b/include/basic/sbmod.hxx
@@ -105,7 +105,6 @@ public:
const OUString& GetSource() const;
const OUString& GetSource32() const { return aOUSource;}
const OUString& GetComment() const { return aComment; }
- void SetSource( const OUString& r );
void SetSource32( const OUString& r );
bool Compile();
diff --git a/sc/inc/attrib.hxx b/sc/inc/attrib.hxx
index 6a28fe9..2843841 100644
--- a/sc/inc/attrib.hxx
+++ b/sc/inc/attrib.hxx
@@ -56,8 +56,6 @@ public:
ScMergeAttr( const ScMergeAttr& );
virtual ~ScMergeAttr();
- OUString GetValueText() const;
-
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
virtual SfxPoolItem* Create( SvStream& rStream, sal_uInt16 nVer ) const SAL_OVERRIDE;
@@ -251,7 +249,6 @@ public:
ScPageHFItem( const ScPageHFItem& rItem );
virtual ~ScPageHFItem();
- OUString GetValueText() const;
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
@@ -303,7 +300,6 @@ public:
ScDoubleItem( const ScDoubleItem& rItem );
virtual ~ScDoubleItem();
- OUString GetValueText() const;
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
diff --git a/sc/inc/grouparealistener.hxx b/sc/inc/grouparealistener.hxx
index da3481d..9fa4e3d 100644
--- a/sc/inc/grouparealistener.hxx
+++ b/sc/inc/grouparealistener.hxx
@@ -60,8 +60,6 @@ public:
ScAddress getTopCellPos() const;
const ScRange& getRange() const;
SCROW getGroupLength() const;
- bool isStartFixed() const;
- bool isEndFixed() const;
private:
void notifyCellChange( const SfxHint& rHint, const ScAddress& rPos );
diff --git a/sc/source/core/data/attrib.cxx b/sc/source/core/data/attrib.cxx
index bb921c3..e2af6e1 100644
--- a/sc/source/core/data/attrib.cxx
+++ b/sc/source/core/data/attrib.cxx
@@ -110,16 +110,6 @@ ScMergeAttr::~ScMergeAttr()
{
}
-OUString ScMergeAttr::GetValueText() const
-{
- OUString aRet = "("
- + OUString::number(static_cast<sal_Int32>(nColMerge))
- + ","
- + OUString::number(static_cast<sal_Int32>(nRowMerge))
- + ")";
- return aRet;
-}
-
bool ScMergeAttr::operator==( const SfxPoolItem& rItem ) const
{
OSL_ENSURE( Which() != rItem.Which() || Type() == rItem.Type(), "which ==, type !=" );
@@ -632,11 +622,6 @@ bool ScPageHFItem::PutValue( const uno::Any& rVal, sal_uInt8 /* nMemberId */ )
return true;
}
-OUString ScPageHFItem::GetValueText() const
-{
- return OUString("ScPageHFItem");
-}
-
bool ScPageHFItem::operator==( const SfxPoolItem& rItem ) const
{
assert(SfxPoolItem::operator==(rItem));
@@ -941,11 +926,6 @@ ScDoubleItem::ScDoubleItem( const ScDoubleItem& rItem )
nValue = rItem.nValue;
}
-OUString ScDoubleItem::GetValueText() const
-{
- return OUString("ScDoubleItem");
-}
-
bool ScDoubleItem::operator==( const SfxPoolItem& rItem ) const
{
assert(SfxPoolItem::operator==(rItem));
diff --git a/sc/source/core/tool/grouparealistener.cxx b/sc/source/core/tool/grouparealistener.cxx
index e7b71d7..8cd30d7 100644
--- a/sc/source/core/tool/grouparealistener.cxx
+++ b/sc/source/core/tool/grouparealistener.cxx
@@ -265,16 +265,6 @@ SCROW FormulaGroupAreaListener::getGroupLength() const
return mnGroupLen;
}
-bool FormulaGroupAreaListener::isStartFixed() const
-{
- return mbStartFixed;
-}
-
-bool FormulaGroupAreaListener::isEndFixed() const
-{
- return mbEndFixed;
-}
-
void FormulaGroupAreaListener::notifyCellChange( const SfxHint& rHint, const ScAddress& rPos )
{
// Determine which formula cells within the group need to be notified of this change.
diff --git a/sc/source/ui/app/uiitems.cxx b/sc/source/ui/app/uiitems.cxx
index f637561..bc48b21 100644
--- a/sc/source/ui/app/uiitems.cxx
+++ b/sc/source/ui/app/uiitems.cxx
@@ -71,11 +71,6 @@ ScInputStatusItem::~ScInputStatusItem()
delete pEditData;
}
-OUString ScInputStatusItem::GetValueText() const
-{
- return OUString("InputStatus");
-}
-
bool ScInputStatusItem::operator==( const SfxPoolItem& rItem ) const
{
assert(SfxPoolItem::operator==(rItem));
@@ -259,11 +254,6 @@ bool ScQueryItem::GetAdvancedQuerySource(ScRange& rSource) const
return bIsAdvanced;
}
-OUString ScQueryItem::GetValueText() const
-{
- return OUString("QueryItem");
-}
-
bool ScQueryItem::operator==( const SfxPoolItem& rItem ) const
{
assert(SfxPoolItem::operator==(rItem));
@@ -414,11 +404,6 @@ ScConsolidateItem::~ScConsolidateItem()
{
}
-OUString ScConsolidateItem::GetValueText() const
-{
- return OUString("ScConsolidateItem");
-}
-
bool ScConsolidateItem::operator==( const SfxPoolItem& rItem ) const
{
assert(SfxPoolItem::operator==(rItem));
@@ -463,11 +448,6 @@ ScPivotItem::~ScPivotItem()
delete pSaveData;
}
-OUString ScPivotItem::GetValueText() const
-{
- return OUString("ScPivotItem");
-}
-
bool ScPivotItem::operator==( const SfxPoolItem& rItem ) const
{
assert(SfxPoolItem::operator==(rItem));
diff --git a/sc/source/ui/docshell/docsh2.cxx b/sc/source/ui/docshell/docsh2.cxx
index a7047fa..6f8b4f4 100644
--- a/sc/source/ui/docshell/docsh2.cxx
+++ b/sc/source/ui/docshell/docsh2.cxx
@@ -140,14 +140,6 @@ void ScDocShell::ResetDrawObjectShell()
pDrawLayer->SetObjectShell( NULL );
}
-void ScDocShell::Activate()
-{
-}
-
-void ScDocShell::Deactivate()
-{
-}
-
ScDrawLayer* ScDocShell::MakeDrawLayer()
{
ScDrawLayer* pDrawLayer = aDocument.GetDrawLayer();
diff --git a/sc/source/ui/inc/docsh.hxx b/sc/source/ui/inc/docsh.hxx
index e70ac44..ba92007 100644
--- a/sc/source/ui/inc/docsh.hxx
+++ b/sc/source/ui/inc/docsh.hxx
@@ -177,14 +177,10 @@ public:
virtual ~ScDocShell();
using SotObject::GetInterface;
- using SfxShell::Activate; // with sal_Bool bMDI
- using SfxShell::Deactivate; // with sal_Bool bMDI
#if ENABLE_TELEPATHY
SAL_DLLPRIVATE ScCollaboration* GetCollaboration();
#endif
- void Activate();
- void Deactivate();
virtual ::svl::IUndoManager*
GetUndoManager() SAL_OVERRIDE;
diff --git a/sc/source/ui/inc/uiitems.hxx b/sc/source/ui/inc/uiitems.hxx
index 80a7f41..ac51bae 100644
--- a/sc/source/ui/inc/uiitems.hxx
+++ b/sc/source/ui/inc/uiitems.hxx
@@ -63,8 +63,6 @@ public:
ScInputStatusItem( const ScInputStatusItem& rItem );
virtual ~ScInputStatusItem();
- OUString GetValueText() const;
-
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
@@ -179,7 +177,6 @@ public:
ScQueryItem( const ScQueryItem& rItem );
virtual ~ScQueryItem();
- OUString GetValueText() const;
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
@@ -249,7 +246,6 @@ public:
ScConsolidateItem( const ScConsolidateItem& rItem );
virtual ~ScConsolidateItem();
- OUString GetValueText() const;
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
@@ -268,7 +264,6 @@ public:
ScPivotItem( const ScPivotItem& rItem );
virtual ~ScPivotItem();
- OUString GetValueText() const;
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
diff --git a/unusedcode.easy b/unusedcode.easy
index 17cdc31..1fd308c 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -30,19 +30,10 @@ SbModule::SetSource(rtl::OUString const&)
ScBroadcastAreaSlotMachine::AreaBroadcastInRange(ScRange const&, ScHint const&) const
ScCellValue::set(ScRefCellValue const&)
ScCondFormatManagerDlg::IsInRefMode() const
-ScConsolidateItem::GetValueText() const
-ScDocShell::Activate()
-ScDocShell::Deactivate()
ScDocument::CreateFormatTable() const
ScDocument::EndAllListeners(ScRange const&)
-ScDoubleItem::GetValueText() const
-ScInputStatusItem::GetValueText() const
-ScMergeAttr::GetValueText() const
-ScPageHFItem::GetValueText() const
-ScPivotItem::GetValueText() const
ScPreviewShell::GetDescription() const
ScPrivatSplit::GetDeltaX()
-ScQueryItem::GetValueText() const
ScSolveItem::GetValueText() const
ScSortItem::GetValueText() const
ScSubTotalItem::GetValueText() const
@@ -76,8 +67,6 @@ StyleSettings::SetSpinSize(long)
StyleSettings::SetTitleHeight(long)
StyleSettings::SetUseFlatBorders(bool)
StyleSettings::SetUseFlatMenus(bool)
-SvDataPipe_Impl::addMark(unsigned int)
-SvDataPipe_Impl::removeMark(unsigned int)
SvpSalFrame::enableDamageTracker(bool)
SvpSalInstance::PostedEventsInQueue()
SvtListener::IsListening(SvtBroadcaster&) const
@@ -85,7 +74,6 @@ SvxColorTabPage::GetPropertyList(XPropertyListType)
SvxColumnItem::GetValueText() const
SvxDummyTextSource::SetNotifyHdl(Link const&)
SvxFontListBox::GetSelectEntry() const
-SvxFormatCellsDialog::Apply()
SvxLongLRSpaceItem::GetValueText() const
SvxLongULSpaceItem::GetValueText() const
SvxObjectItem::GetValueText() const
@@ -257,7 +245,6 @@ dp_registry::backend::RegisteredDb::getEntry(rtl::OUString const&)
oglcanvas::CanvasHelper::flush() const
oglcanvas::TextLayout::draw(com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&, com::sun::star::uno::Reference<com::sun::star::rendering::XGraphicDevice> const&) const
oox::drawingml::TextListStyle::dump() const
-reportdesign::lcl_getControlModelMap()
sc::CLBuildKernelThread::CLBuildKernelThread()
sc::CLBuildKernelThread::consume()
sc::CLBuildKernelThread::finish()
@@ -267,8 +254,6 @@ sc::ColumnSpanSet::swap(sc::ColumnSpanSet&)
sc::FormulaGroupAreaListener::getGroupLength() const
sc::FormulaGroupAreaListener::getRange() const
sc::FormulaGroupAreaListener::getTopCellPos() const
-sc::FormulaGroupAreaListener::isEndFixed() const
-sc::FormulaGroupAreaListener::isStartFixed() const
sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
std::_Rb_tree<rtl::OUString, std::pair<rtl::OUString const, (anonymous namespace)::TemplateId>, std::_Select1st<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> >, std::less<rtl::OUString>, std::allocator<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> > >::_Rb_tree(std::_Rb_tree<rtl::OUString, std::pair<rtl::OUString const, (anonymous namespace)::TemplateId>, std::_Select1st<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> >, std::less<rtl::OUString>, std::allocator<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> > >&&)
More information about the Libreoffice-commits
mailing list