summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cui/source/inc/MacroManagerDialog.hxx4
-rw-r--r--include/oox/core/contexthandler2.hxx1
-rw-r--r--include/sfx2/minfitem.hxx1
-rw-r--r--sc/inc/document.hxx1
-rw-r--r--sc/source/core/data/documen3.cxx14
-rw-r--r--sc/source/ui/condformat/condformatmgr.cxx7
-rw-r--r--sc/source/ui/inc/condformatmgr.hxx1
-rw-r--r--sfx2/source/control/minfitem.cxx10
8 files changed, 0 insertions, 39 deletions
diff --git a/cui/source/inc/MacroManagerDialog.hxx b/cui/source/inc/MacroManagerDialog.hxx
index 64854d6980a6..25b24c1b6c8e 100644
--- a/cui/source/inc/MacroManagerDialog.hxx
+++ b/cui/source/inc/MacroManagerDialog.hxx
@@ -151,10 +151,6 @@ public:
{
m_xTreeView->connect_changed(rLink);
}
- void set_size_request(int nWidth, int nHeight)
- {
- m_xTreeView->set_size_request(nWidth, nHeight);
- }
weld::TreeView& get_widget() { return *m_xTreeView; }
void ClearAll();
diff --git a/include/oox/core/contexthandler2.hxx b/include/oox/core/contexthandler2.hxx
index 0101bd956a21..b6664704044e 100644
--- a/include/oox/core/contexthandler2.hxx
+++ b/include/oox/core/contexthandler2.hxx
@@ -202,7 +202,6 @@ protected:
void implEndRecord( sal_Int32 nRecId );
bool prepareMceContext( sal_Int32 nElement, const AttributeList& rAttribs );
- XmlFilterBase& getDocFilter() const { return mrFilter; }
enum class MCE_STATE
{
diff --git a/include/sfx2/minfitem.hxx b/include/sfx2/minfitem.hxx
index bbf4744afd62..1b6ff400c6bf 100644
--- a/include/sfx2/minfitem.hxx
+++ b/include/sfx2/minfitem.hxx
@@ -64,7 +64,6 @@ public:
{ aLibName = r; }
const BasicManager* GetBasicManager() const
{ return pBasicManager; }
- OUString GetQualifiedName() const;
const OUString& GetLocation() const { return aLocationName; }
};
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index bf3d15092e68..b1e80798410b 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -927,7 +927,6 @@ public:
SC_DLLPUBLIC bool HasPivotTable() const;
SC_DLLPUBLIC ScDPCollection* GetDPCollection();
SC_DLLPUBLIC const ScDPCollection* GetDPCollection() const;
- SC_DLLPUBLIC const ScDPObject* GetDPAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) const;
SC_DLLPUBLIC ScDPObject* GetDPAtCursor(SCCOL nCol, SCROW nRow, SCTAB nTab) const;
SC_DLLPUBLIC ScDPObject* GetDPAtCursor(ScAddress const& rAddress) const
{
diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx
index 602d3b573535..3c95015874c0 100644
--- a/sc/source/core/data/documen3.cxx
+++ b/sc/source/core/data/documen3.cxx
@@ -379,20 +379,6 @@ const ScDPCollection* ScDocument::GetDPCollection() const
return pDPCollection.get();
}
-const ScDPObject* ScDocument::GetDPAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) const
-{
- if (!pDPCollection)
- return nullptr;
-
- sal_uInt16 nCount = pDPCollection->GetCount();
- ScRange aRange(nCol1, nRow1, nTab, nCol2, nRow2, nTab);
- for (sal_uInt16 i = 0; i < nCount; i++)
- if ((*pDPCollection)[i].GetOutRange() == aRange)
- return &(*pDPCollection)[i];
-
- return nullptr;
-}
-
ScDPObject* ScDocument::GetDPAtCursor(SCCOL nCol, SCROW nRow, SCTAB nTab) const
{
if (!pDPCollection)
diff --git a/sc/source/ui/condformat/condformatmgr.cxx b/sc/source/ui/condformat/condformatmgr.cxx
index fcb1b8afd3a0..f5add41fda9d 100644
--- a/sc/source/ui/condformat/condformatmgr.cxx
+++ b/sc/source/ui/condformat/condformatmgr.cxx
@@ -185,13 +185,6 @@ void ScCondFormatManagerDlg::UpdateButtonSensitivity()
m_xBtnEdit->set_sensitive(bNewSensitivity);
}
-// Get the current conditional format selected.
-//
-ScConditionalFormat* ScCondFormatManagerDlg::GetCondFormatSelected()
-{
- return m_xCtrlManager->GetSelection();
-}
-
void ScCondFormatManagerDlg::ShowEasyConditionalDialog(bool isEdit)
{
SfxViewShell* pViewShell = SfxViewShell::Current();
diff --git a/sc/source/ui/inc/condformatmgr.hxx b/sc/source/ui/inc/condformatmgr.hxx
index 564415186ac0..301f74499063 100644
--- a/sc/source/ui/inc/condformatmgr.hxx
+++ b/sc/source/ui/inc/condformatmgr.hxx
@@ -48,7 +48,6 @@ public:
bool CondFormatsChanged() const;
void SetModified();
- ScConditionalFormat* GetCondFormatSelected();
void ShowEasyConditionalDialog(bool isEdit = false);
private:
diff --git a/sfx2/source/control/minfitem.cxx b/sfx2/source/control/minfitem.cxx
index 7b5b2d62bc2a..765eada62029 100644
--- a/sfx2/source/control/minfitem.cxx
+++ b/sfx2/source/control/minfitem.cxx
@@ -63,16 +63,6 @@ SfxMacroInfoItem* SfxMacroInfoItem::Clone( SfxItemPool *) const
return new SfxMacroInfoItem(*this);
}
-OUString SfxMacroInfoItem::GetQualifiedName() const
-{
- OUString aMacroName = aLibName +
- "." +
- aModuleName +
- "." +
- aMethodName;
- return aMacroName;
-}
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */