Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
ee0d6e3a
Kaydet (Commit)
ee0d6e3a
authored
Ock 20, 2012
tarafından
August Sodora
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
DECL_PTRARRAY->std::vector
üst
33e9d339
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
7 deletions
+4
-7
msgpool.hxx
sfx2/inc/sfx2/msgpool.hxx
+2
-1
msgpool.cxx
sfx2/source/control/msgpool.cxx
+2
-6
No files found.
sfx2/inc/sfx2/msgpool.hxx
Dosyayı görüntüle @
ee0d6e3a
...
...
@@ -40,9 +40,10 @@
class
SfxInterface
;
class
SfxSlot
;
class
SfxSlotType
Arr
_Impl
;
class
SfxSlotType_Impl
;
typedef
std
::
basic_string
<
sal_uInt16
>
SfxSlotGroupArr_Impl
;
typedef
std
::
vector
<
SfxSlotType_Impl
*>
SfxSlotTypeArr_Impl
;
typedef
std
::
vector
<
SfxInterface
*>
SfxInterfaceArr_Impl
;
class
SFX2_DLLPUBLIC
SfxSlotPool
...
...
sfx2/source/control/msgpool.cxx
Dosyayı görüntüle @
ee0d6e3a
...
...
@@ -43,7 +43,6 @@
#include <sfx2/sfx.hrc>
struct
SfxSlotType_Impl
{
sal_uInt16
nId
;
...
...
@@ -54,9 +53,6 @@ struct SfxSlotType_Impl
{}
};
DECL_PTRARRAY
(
SfxSlotTypeArr_Impl
,
SfxSlotType_Impl
*
,
8
,
8
)
SfxSlotPool
::
SfxSlotPool
(
SfxSlotPool
*
pParent
,
ResMgr
*
pResManager
)
:
_pGroups
(
0
)
,
_pTypes
(
0
)
...
...
@@ -82,8 +78,8 @@ SfxSlotPool::~SfxSlotPool()
delete
_pGroups
;
if
(
_pTypes
)
{
for
(
sal_uInt16
n
=
_pTypes
->
Count
();
n
--
;
)
delete
_pTypes
->
GetObject
(
n
)
;
for
(
sal_uInt16
n
=
0
;
n
<
_pTypes
->
size
();
++
n
)
delete
(
*
_pTypes
)[
n
]
;
delete
_pTypes
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment