summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2012-01-20 14:37:00 -0500
committerAugust Sodora <augsod@gmail.com>2012-01-20 14:45:04 -0500
commit56208a1b367b25eea8bd7df5507cf4fa1fe8fb1d (patch)
treef337b711ed67dbf009ca9202c28b4d748947e261 /sfx2/inc
parentf7c1f80ae4f9a4f33cdac48040e2d48a8610604c (diff)
DECL_PTRSTACK->std::stack
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/sfx2/dispatch.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/sfx2/inc/sfx2/dispatch.hxx b/sfx2/inc/sfx2/dispatch.hxx
index de657426dfc6..0867aa5d08ff 100644
--- a/sfx2/inc/sfx2/dispatch.hxx
+++ b/sfx2/inc/sfx2/dispatch.hxx
@@ -37,10 +37,11 @@
#include <sfx2/bindings.hxx>
#include <sfx2/viewfrm.hxx>
+#include <deque>
+
class SfxSlotServer;
class SfxShell;
class SfxRequest;
-class SfxShellStack_Impl;
class SfxHintPoster;
class SfxViewFrame;
class SfxBindings;
@@ -64,20 +65,18 @@ namespace com
}
}
-//=========================================================================
-
#define SFX_SHELL_POP_UNTIL 4
#define SFX_SHELL_POP_DELETE 2
#define SFX_SHELL_PUSH 1
-//=========================================================================
-
typedef SfxPoolItem* SfxPoolItemPtr;
SV_DECL_PTRARR_DEL( SfxItemPtrArray, SfxPoolItemPtr, 4, 4 )
// fuer shell.cxx
typedef SfxItemPtrArray SfxItemArray_Impl;
+typedef std::deque<SfxShell*> SfxShellStack_Impl;
+
class SFX2_DLLPUBLIC SfxDispatcher
{
SfxDispatcher_Impl* pImp;