diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-28 10:10:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-29 07:28:57 +0100 |
commit | a566fd1c1a50f9bcb4c69a19bdf4fb1955285d93 (patch) | |
tree | 13273efcf8aa69ce39a1860dc3d111c071e6a7b3 /sc/inc/chartarr.hxx | |
parent | 411260d836e7bf6c693b9b7d16af1b36184133af (diff) |
loplugin:unusedmethods
Change-Id: I2efb5c0e5735c179314c6c5de87821cee3b033e1
Reviewed-on: https://gerrit.libreoffice.org/45386
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/chartarr.hxx')
-rw-r--r-- | sc/inc/chartarr.hxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sc/inc/chartarr.hxx b/sc/inc/chartarr.hxx index 87b67d5f465b..3580b31f008b 100644 --- a/sc/inc/chartarr.hxx +++ b/sc/inc/chartarr.hxx @@ -77,27 +77,10 @@ public: void SetHeaders(bool bCol, bool bRow) { aPositioner.SetHeaders(bCol, bRow); } bool HasColHeaders() const { return aPositioner.HasColHeaders(); } bool HasRowHeaders() const { return aPositioner.HasRowHeaders(); } - const OUString& GetName() const { return aName; } ScMemChart* CreateMemChart(); }; -class ScChartCollection -{ - typedef ::std::vector<std::unique_ptr<ScChartArray>> DataType; - DataType m_Data; - -public: - ScChartCollection(); - ScChartCollection(const ScChartCollection& rColl); - - void clear(); - size_t size() const; - bool empty() const; - ScChartArray* operator[](size_t nIndex); - const ScChartArray* operator[](size_t nIndex) const; -}; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |