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
c865da00
Kaydet (Commit)
c865da00
authored
Kas 27, 2014
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svl: deploy some asserts in SfxItemPool, those are bugs
Change-Id: Ifa28f3b02640720855a6e40ddd7a5f752904e8bd
üst
9c1a1b98
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
itempool.cxx
svl/source/items/itempool.cxx
+1
-1
poolio.cxx
svl/source/items/poolio.cxx
+1
-1
No files found.
svl/source/items/itempool.cxx
Dosyayı görüntüle @
c865da00
...
...
@@ -878,7 +878,7 @@ const SfxPoolItem& SfxItemPool::GetDefaultItem( sal_uInt16 nWhich ) const
{
if
(
pImp
->
mpSecondary
)
return
pImp
->
mpSecondary
->
GetDefaultItem
(
nWhich
);
SFX_ASSERT
(
false
,
nWhich
,
"unknown which - dont ask me for defaults"
);
assert
(
!
"unknown which - dont ask me for defaults"
);
}
DBG_ASSERT
(
pImp
->
ppStaticDefaults
,
"no defaults known - dont ask me for defaults"
);
...
...
svl/source/items/poolio.cxx
Dosyayı görüntüle @
c865da00
...
...
@@ -695,7 +695,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream)
sal_uInt16
SfxItemPool
::
GetIndex_Impl
(
sal_uInt16
nWhich
)
const
{
DBG_ASSERT
(
nWhich
>=
pImp
->
mnStart
&&
nWhich
<=
pImp
->
mnEnd
,
"WhichId not within the Pool range"
);
assert
(
nWhich
>=
pImp
->
mnStart
&&
nWhich
<=
pImp
->
mnEnd
);
return
nWhich
-
pImp
->
mnStart
;
}
...
...
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