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
905e862c
Kaydet (Commit)
905e862c
authored
Eyl 12, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Pass by const ref
Change-Id: Iacbb07d6478901be77feb253f526614800564c0f
üst
901afe3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
typemanager.cxx
cppuhelper/source/typemanager.cxx
+3
-3
typemanager.hxx
cppuhelper/source/typemanager.hxx
+4
-3
No files found.
cppuhelper/source/typemanager.cxx
Dosyayı görüntüle @
905e862c
...
@@ -2245,7 +2245,7 @@ css::uno::Any cppuhelper::TypeManager::getInterfaceMember(
...
@@ -2245,7 +2245,7 @@ css::uno::Any cppuhelper::TypeManager::getInterfaceMember(
}
}
css
::
uno
::
Any
cppuhelper
::
TypeManager
::
getNamed
(
css
::
uno
::
Any
cppuhelper
::
TypeManager
::
getNamed
(
rtl
::
OUString
const
&
name
,
rtl
::
Reference
<
unoidl
::
Entity
>
entity
)
rtl
::
OUString
const
&
name
,
rtl
::
Reference
<
unoidl
::
Entity
>
const
&
entity
)
{
{
assert
(
entity
.
is
());
assert
(
entity
.
is
());
switch
(
entity
->
getSort
())
{
switch
(
entity
->
getSort
())
{
...
@@ -2337,7 +2337,7 @@ css::uno::Any cppuhelper::TypeManager::getNamed(
...
@@ -2337,7 +2337,7 @@ css::uno::Any cppuhelper::TypeManager::getNamed(
}
}
css
::
uno
::
Any
cppuhelper
::
TypeManager
::
getEnumMember
(
css
::
uno
::
Any
cppuhelper
::
TypeManager
::
getEnumMember
(
rtl
::
Reference
<
unoidl
::
EnumTypeEntity
>
entity
,
rtl
::
Reference
<
unoidl
::
EnumTypeEntity
>
const
&
entity
,
rtl
::
OUString
const
&
member
)
rtl
::
OUString
const
&
member
)
{
{
for
(
std
::
vector
<
unoidl
::
EnumTypeEntity
::
Member
>::
const_iterator
i
(
for
(
std
::
vector
<
unoidl
::
EnumTypeEntity
::
Member
>::
const_iterator
i
(
...
@@ -2353,7 +2353,7 @@ css::uno::Any cppuhelper::TypeManager::getEnumMember(
...
@@ -2353,7 +2353,7 @@ css::uno::Any cppuhelper::TypeManager::getEnumMember(
css
::
uno
::
Any
cppuhelper
::
TypeManager
::
getConstant
(
css
::
uno
::
Any
cppuhelper
::
TypeManager
::
getConstant
(
rtl
::
OUString
const
&
constantGroupName
,
rtl
::
OUString
const
&
constantGroupName
,
rtl
::
Reference
<
unoidl
::
ConstantGroupEntity
>
entity
,
rtl
::
Reference
<
unoidl
::
ConstantGroupEntity
>
const
&
entity
,
rtl
::
OUString
const
&
member
)
rtl
::
OUString
const
&
member
)
{
{
for
(
std
::
vector
<
unoidl
::
ConstantGroupEntity
::
Member
>::
const_iterator
i
(
for
(
std
::
vector
<
unoidl
::
ConstantGroupEntity
::
Member
>::
const_iterator
i
(
...
...
cppuhelper/source/typemanager.hxx
Dosyayı görüntüle @
905e862c
...
@@ -131,15 +131,16 @@ private:
...
@@ -131,15 +131,16 @@ private:
rtl
::
OUString
const
&
name
,
sal_Int32
separator
);
rtl
::
OUString
const
&
name
,
sal_Int32
separator
);
css
::
uno
::
Any
getNamed
(
css
::
uno
::
Any
getNamed
(
rtl
::
OUString
const
&
name
,
rtl
::
Reference
<
unoidl
::
Entity
>
entity
);
rtl
::
OUString
const
&
name
,
rtl
::
Reference
<
unoidl
::
Entity
>
const
&
entity
);
css
::
uno
::
Any
getEnumMember
(
css
::
uno
::
Any
getEnumMember
(
rtl
::
Reference
<
unoidl
::
EnumTypeEntity
>
entity
,
rtl
::
Reference
<
unoidl
::
EnumTypeEntity
>
const
&
entity
,
rtl
::
OUString
const
&
member
);
rtl
::
OUString
const
&
member
);
css
::
uno
::
Any
getConstant
(
css
::
uno
::
Any
getConstant
(
rtl
::
OUString
const
&
constantGroupName
,
rtl
::
OUString
const
&
constantGroupName
,
rtl
::
Reference
<
unoidl
::
ConstantGroupEntity
>
entity
,
rtl
::
Reference
<
unoidl
::
ConstantGroupEntity
>
const
&
entity
,
rtl
::
OUString
const
&
member
);
rtl
::
OUString
const
&
member
);
rtl
::
Reference
<
unoidl
::
Entity
>
findEntity
(
rtl
::
OUString
const
&
name
);
rtl
::
Reference
<
unoidl
::
Entity
>
findEntity
(
rtl
::
OUString
const
&
name
);
...
...
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