summaryrefslogtreecommitdiff
path: root/include/vbahelper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-20 13:58:12 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-21 06:51:47 +0000
commit564805d6f825a7889e039c3f95a638fa7c00b4f4 (patch)
treecc3dd5b7dca7393e34dbe1fde7268624f616d937 /include/vbahelper
parentc714b43b0137ad253f51e1c65417c9874b8509e5 (diff)
loplugin:unusedmethods vbahelper
Change-Id: Ia04e2682e3bd05591b67b9fe15557ce8c0e7939e Reviewed-on: https://gerrit.libreoffice.org/17234 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vbahelper')
-rw-r--r--include/vbahelper/vbadocumentsbase.hxx1
-rw-r--r--include/vbahelper/vbashape.hxx1
2 files changed, 0 insertions, 2 deletions
diff --git a/include/vbahelper/vbadocumentsbase.hxx b/include/vbahelper/vbadocumentsbase.hxx
index b87702fca6f0..a3b4d881ca5a 100644
--- a/include/vbahelper/vbadocumentsbase.hxx
+++ b/include/vbahelper/vbadocumentsbase.hxx
@@ -51,7 +51,6 @@ public:
protected:
css::uno::Any createDocument() throw (css::uno::RuntimeException, std::exception);
- void closeDocuments() throw (css::uno::RuntimeException);
css::uno::Any openDocument( const OUString& Filename, const css::uno::Any& ReadOnly, const css::uno::Sequence< css::beans::PropertyValue >& rProps ) throw (css::uno::RuntimeException);
};
diff --git a/include/vbahelper/vbashape.hxx b/include/vbahelper/vbashape.hxx
index 897ff5b0b0ea..5cedd998ea98 100644
--- a/include/vbahelper/vbashape.hxx
+++ b/include/vbahelper/vbashape.hxx
@@ -53,7 +53,6 @@ public:
ScVbaShape( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::drawing::XShape >& xShape, const css::uno::Reference< css::drawing::XShapes >& xShapes, const css::uno::Reference< css::frame::XModel >& xModel, sal_Int32 nType )
throw (css::lang::IllegalArgumentException, css::uno::RuntimeException);
virtual ~ScVbaShape();
- css::uno::Any getRange() { return m_aRange; };
void setRange( css::uno::Any aRange ) { m_aRange = aRange; };
static sal_Int32 getType( const css::uno::Reference< css::drawing::XShape >& rShape ) throw (css::uno::RuntimeException);