summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-29 14:04:27 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-02-06 16:42:01 -0500
commitbd1d61324244d26d8581f784d7b8c6cce529a6be (patch)
treef989c8cb61095202cbc70c0a1beffbae26287444 /sfx2
parentf1aaedc48e56e04cbd07bbabbb775507a7ac34dd (diff)
remove some unnecessary typedefs to pointer
that were really not helping make the code any clearer. Found with a search git grep -P 'typedef\s+\w+\s*\*\s*\w+\;' and manual inspection (cherry picked from commit d16d9f950f8cb6d8948875372c9ff1f0aae9fb7a) Change-Id: I6a5c031e9e060ad3623a7586ec8a8cc4fe6252e9
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/view/viewimp.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sfx2/source/view/viewimp.hxx b/sfx2/source/view/viewimp.hxx
index 2d2ddf3f3cd1..9e96d30398b4 100644
--- a/sfx2/source/view/viewimp.hxx
+++ b/sfx2/source/view/viewimp.hxx
@@ -34,8 +34,7 @@
class SfxBaseController;
-typedef SfxShell* SfxShellPtr_Impl;
-typedef std::vector<SfxShellPtr_Impl> SfxShellArr_Impl;
+typedef std::vector<SfxShell*> SfxShellArr_Impl;
class SfxClipboardChangeListener;
class SfxInPlaceClientList;