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
cd93d5f3
Kaydet (Commit)
cd93d5f3
authored
Haz 02, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: deal with those that are (technically) const_cast
Change-Id: Idbd718042e13e9c107c1a349c113656bf9468614
üst
75e3aaea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
propertysethelper.cxx
comphelper/source/property/propertysethelper.cxx
+6
-6
No files found.
comphelper/source/property/propertysethelper.cxx
Dosyayı görüntüle @
cd93d5f3
...
...
@@ -91,7 +91,7 @@ void SAL_CALL PropertySetHelper::setPropertyValue( const OUString& aPropertyName
aEntries
[
1
]
=
NULL
;
_setPropertyValues
(
(
const
PropertyMapEntry
**
)
aEntries
,
&
aValue
);
_setPropertyValues
(
aEntries
,
&
aValue
);
}
Any
SAL_CALL
PropertySetHelper
::
getPropertyValue
(
const
OUString
&
PropertyName
)
throw
(
UnknownPropertyException
,
WrappedTargetException
,
RuntimeException
,
std
::
exception
)
...
...
@@ -105,7 +105,7 @@ Any SAL_CALL PropertySetHelper::getPropertyValue( const OUString& PropertyName )
aEntries
[
1
]
=
NULL
;
Any
aAny
;
_getPropertyValues
(
(
const
PropertyMapEntry
**
)
aEntries
,
&
aAny
);
_getPropertyValues
(
aEntries
,
&
aAny
);
return
aAny
;
}
...
...
@@ -154,7 +154,7 @@ void SAL_CALL PropertySetHelper::setPropertyValues( const Sequence< OUString >&
}
if
(
!
bUnknown
)
_setPropertyValues
(
(
const
PropertyMapEntry
**
)
pEntries
.
get
(),
rValues
.
getConstArray
()
);
_setPropertyValues
(
pEntries
.
get
(),
rValues
.
getConstArray
()
);
if
(
bUnknown
)
throw
RuntimeException
(
*
pNames
,
static_cast
<
XPropertySet
*
>
(
this
)
);
...
...
@@ -184,7 +184,7 @@ Sequence< Any > SAL_CALL PropertySetHelper::getPropertyValues(const Sequence< OU
if
(
!
bUnknown
)
{
aValues
.
realloc
(
nCount
);
_getPropertyValues
(
(
const
PropertyMapEntry
**
)
pEntries
.
get
(),
aValues
.
getArray
()
);
_getPropertyValues
(
pEntries
.
get
(),
aValues
.
getArray
()
);
}
if
(
bUnknown
)
...
...
@@ -221,7 +221,7 @@ PropertyState SAL_CALL PropertySetHelper::getPropertyState( const OUString& Prop
aEntries
[
1
]
=
NULL
;
PropertyState
aState
(
PropertyState_AMBIGUOUS_VALUE
);
_getPropertyStates
(
(
const
PropertyMapEntry
**
)
aEntries
,
&
aState
);
_getPropertyStates
(
aEntries
,
&
aState
);
return
aState
;
}
...
...
@@ -250,7 +250,7 @@ Sequence< PropertyState > SAL_CALL PropertySetHelper::getPropertyStates( const S
pEntries
[
nCount
]
=
NULL
;
if
(
!
bUnknown
)
_getPropertyStates
(
(
const
PropertyMapEntry
**
)
pEntries
.
get
(),
aStates
.
getArray
()
);
_getPropertyStates
(
pEntries
.
get
(),
aStates
.
getArray
()
);
if
(
bUnknown
)
throw
UnknownPropertyException
(
*
pNames
,
static_cast
<
XPropertySet
*
>
(
this
)
);
...
...
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