diff options
author | Noel Grandin <noel@peralex.com> | 2013-04-15 11:21:16 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-04-16 20:04:26 +0000 |
commit | 7e4db91a3900fd0bbce0f0592a045458a37862b3 (patch) | |
tree | aace2283442ca54e4c65e8d524a7851625476aed /sfx2/inc | |
parent | af4a947174aafe669c129c54c304caa43d90eac7 (diff) |
Convert SfxShellStack_Impl from SfxPtrArr to std::vector
Change-Id: I1ffd615a505029242a87337c9ef42c8156c42d70
Reviewed-on: https://gerrit.libreoffice.org/3394
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/sfx2/dispatch.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sfx2/inc/sfx2/dispatch.hxx b/sfx2/inc/sfx2/dispatch.hxx index c7aaae360b84..2b02a5e620c6 100644 --- a/sfx2/inc/sfx2/dispatch.hxx +++ b/sfx2/inc/sfx2/dispatch.hxx @@ -28,11 +28,11 @@ #include <sfx2/bindings.hxx> #include <sfx2/viewfrm.hxx> #include <map> +#include <vector> class SfxSlotServer; class SfxShell; class SfxRequest; -class SfxShellStack_Impl; class SfxHintPoster; class SfxViewFrame; class SfxBindings; @@ -41,6 +41,8 @@ class SfxPopupMenuManager; class SfxModule; struct SfxDispatcher_Impl; +typedef std::vector<SfxShell*> SfxShellStack_Impl; + namespace com { namespace sun |