summaryrefslogtreecommitdiffstats
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-18 10:12:08 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-18 10:38:08 +0000
commit53f16c39f5c4c69ab603bf9098daec71f7a0acb8 (patch)
tree00b3166ecff36bb55dcf0b8c2122a08b72656ab5 /sc/inc
parentClean up (diff)
downloadcore-53f16c39f5c4c69ab603bf9098daec71f7a0acb8.tar.gz
core-53f16c39f5c4c69ab603bf9098daec71f7a0acb8.zip
remove unused typedefs and inline use-once typedefs
and improve the script a little Change-Id: I2792ea4dd5df3a50736fbe209225c3f16fb86b84 Reviewed-on: https://gerrit.libreoffice.org/20033 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/datauno.hxx5
-rw-r--r--sc/inc/dispuno.hxx5
2 files changed, 4 insertions, 6 deletions
diff --git a/sc/inc/datauno.hxx b/sc/inc/datauno.hxx
index a009fbbe3736..1759f394d5c3 100644
--- a/sc/inc/datauno.hxx
+++ b/sc/inc/datauno.hxx
@@ -58,8 +58,6 @@ class ScDataPilotDescriptorBase;
struct ScSortParam;
-typedef std::vector< css::uno::Reference< css::util::XRefreshListener > > XDBRefreshListenerArr_Impl;
-
class ScDataUnoConversion
{
public:
@@ -478,7 +476,8 @@ private:
ScDocShell* pDocShell;
OUString aName;
SfxItemPropertySet aPropSet;
- XDBRefreshListenerArr_Impl aRefreshListeners;
+ std::vector< css::uno::Reference< css::util::XRefreshListener > >
+ aRefreshListeners;
bool bIsUnnamed;
SCTAB aTab;
diff --git a/sc/inc/dispuno.hxx b/sc/inc/dispuno.hxx
index 8d934f941a5c..f5a3c0d98784 100644
--- a/sc/inc/dispuno.hxx
+++ b/sc/inc/dispuno.hxx
@@ -32,8 +32,6 @@ namespace com { namespace sun { namespace star { namespace frame {
class ScTabViewShell;
-typedef std::vector< css::uno::Reference< css::frame::XStatusListener > > XStatusListenerArr_Impl;
-
class ScDispatchProviderInterceptor : public cppu::WeakImplHelper<
css::frame::XDispatchProviderInterceptor,
css::lang::XEventListener>,
@@ -91,7 +89,8 @@ class ScDispatch : public cppu::WeakImplHelper<
public SfxListener
{
ScTabViewShell* pViewShell;
- XStatusListenerArr_Impl aDataSourceListeners;
+ std::vector< css::uno::Reference< css::frame::XStatusListener > >
+ aDataSourceListeners;
ScImportParam aLastImport;
bool bListeningToView;