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
24dbd76b
Kaydet (Commit)
24dbd76b
authored
May 18, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
comphelper::PropertySetInfo remove unused parameter
Change-Id: I960b31befe749860e926e5bb567c0b8d0f87867a
üst
0728e967
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
propertysetinfo.cxx
comphelper/source/property/propertysetinfo.cxx
+3
-7
No files found.
comphelper/source/property/propertysetinfo.cxx
Dosyayı görüntüle @
24dbd76b
...
@@ -36,7 +36,7 @@ public:
...
@@ -36,7 +36,7 @@ public:
PropertyMapImpl
()
throw
();
PropertyMapImpl
()
throw
();
virtual
~
PropertyMapImpl
()
throw
();
virtual
~
PropertyMapImpl
()
throw
();
void
add
(
PropertyMapEntry
const
*
pMap
,
sal_Int32
nCount
=
-
1
)
throw
();
void
add
(
PropertyMapEntry
const
*
pMap
)
throw
();
void
remove
(
const
OUString
&
aName
)
throw
();
void
remove
(
const
OUString
&
aName
)
throw
();
Sequence
<
Property
>
getProperties
()
throw
();
Sequence
<
Property
>
getProperties
()
throw
();
...
@@ -60,13 +60,9 @@ PropertyMapImpl::~PropertyMapImpl() throw()
...
@@ -60,13 +60,9 @@ PropertyMapImpl::~PropertyMapImpl() throw()
{
{
}
}
void
PropertyMapImpl
::
add
(
PropertyMapEntry
const
*
pMap
,
sal_Int32
nCount
)
throw
()
void
PropertyMapImpl
::
add
(
PropertyMapEntry
const
*
pMap
)
throw
()
{
{
// nCount < 0 => add all
while
(
!
pMap
->
maName
.
isEmpty
())
// nCount == 0 => add nothing
// nCount > 0 => add at most nCount entries
while
(
!
pMap
->
maName
.
isEmpty
()
&&
(
(
nCount
<
0
)
||
(
nCount
--
>
0
)
)
)
{
{
#ifdef DBG_UTIL
#ifdef DBG_UTIL
PropertyMap
::
iterator
aIter
=
maPropertyMap
.
find
(
pMap
->
maName
);
PropertyMap
::
iterator
aIter
=
maPropertyMap
.
find
(
pMap
->
maName
);
...
...
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