diff options
author | Bartosz Kosiorek <gang65@openoffice.org> | 2010-10-20 22:48:22 +0200 |
---|---|---|
committer | Bartosz Kosiorek <gang65@openoffice.org> | 2010-10-20 22:48:22 +0200 |
commit | 3ce776ee5b1e38236cbd001ba3ea60f5757fb0ed (patch) | |
tree | b0e7344df918308783b5eaa06c5489657006f359 /sfx2/source | |
parent | 4856f3fc585169d3135fcb9ea3ff4400b9c93d11 (diff) | |
parent | 8ea563dce6cc7e6a81cab56db220e07cc407ee5a (diff) |
svarray: merge with DEV300 m90
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/inc/workwin.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/inc/workwin.hxx b/sfx2/source/inc/workwin.hxx index a82b72bc2947..0e263a58b90e 100644 --- a/sfx2/source/inc/workwin.hxx +++ b/sfx2/source/inc/workwin.hxx @@ -28,6 +28,7 @@ #define _SFXWORKWIN_HXX #include <vector> +#include <deque> #include <com/sun/star/frame/XDispatch.hpp> #include <com/sun/star/frame/XFrame.hpp> #ifndef _COM_SUN_STAR_UI_XUILEMENT_HPP_ @@ -175,11 +176,10 @@ enum SfxDockingConfig DECL_PTRARRAY( SfxChildList_Impl, SfxChild_Impl*, 2, 2 ) DECL_PTRARRAY( SfxChildWindows_Impl, SfxChildWin_Impl*, 2, 2 ) -SV_DECL_OBJARR( SfxObjectBarArr_Impl, SfxObjectBar_Impl, 1, 2 ) struct SfxObjectBarList_Impl { - SfxObjectBarArr_Impl aArr; + std::deque<SfxObjectBar_Impl> aArr; USHORT nAct; SfxObjectBar_Impl operator[] ( USHORT n ) |