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
8e995db6
Kaydet (Commit)
8e995db6
authored
Eyl 25, 2012
tarafından
Noel Grandin
Kaydeden (comit)
Michael Stahl
Eki 04, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool in codemaker
Change-Id: Icea58e7c1dea14f524d6a8d479b7d85e79d6266b
üst
ab7bc4f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
cpputype.cxx
codemaker/source/cppumaker/cpputype.cxx
+7
-7
cpputype.hxx
codemaker/source/cppumaker/cpputype.hxx
+4
-4
No files found.
codemaker/source/cppumaker/cpputype.cxx
Dosyayı görüntüle @
8e995db6
...
...
@@ -152,8 +152,8 @@ CppuType::CppuType(typereg::Reader& typeReader,
const
OString
&
typeName
,
const
TypeManager
&
typeMgr
)
:
m_inheritedMemberCount
(
0
)
,
m_cppuTypeLeak
(
sal_F
alse
)
,
m_cppuTypeDynamic
(
sal_T
rue
)
,
m_cppuTypeLeak
(
f
alse
)
,
m_cppuTypeDynamic
(
t
rue
)
,
m_indentLength
(
0
)
,
m_typeName
(
typeName
)
,
m_name
(
typeName
.
copy
(
typeName
.
lastIndexOf
(
'/'
)
+
1
))
...
...
@@ -294,9 +294,9 @@ sal_Bool CppuType::dump(CppuOptions* pOptions)
// meaningful (getCppuType is just a forward to cppu::UnoType::get now),
// and -CS is handled the same way as -C now:
if
(
pOptions
->
isValid
(
"-L"
))
m_cppuTypeLeak
=
sal_T
rue
;
m_cppuTypeLeak
=
t
rue
;
if
(
pOptions
->
isValid
(
"-C"
)
||
pOptions
->
isValid
(
"-CS"
))
m_cppuTypeDynamic
=
sal_F
alse
;
m_cppuTypeDynamic
=
f
alse
;
}
OString
outPath
;
...
...
@@ -1360,8 +1360,8 @@ InterfaceType::InterfaceType(typereg::Reader& typeReader,
:
CppuType
(
typeReader
,
typeName
,
typeMgr
)
{
m_inheritedMemberCount
=
0
;
m_hasAttributes
=
sal_F
alse
;
m_hasMethods
=
sal_F
alse
;
m_hasAttributes
=
f
alse
;
m_hasMethods
=
f
alse
;
}
InterfaceType
::~
InterfaceType
()
...
...
@@ -2320,7 +2320,7 @@ sal_Bool ConstantsType::dump(CppuOptions* pOptions)
addSpecialDependencies
();
if
(
pOptions
->
isValid
(
"-U"
))
m_cppuTypeDynamic
=
sal_T
rue
;
m_cppuTypeDynamic
=
t
rue
;
OString
outPath
;
if
(
pOptions
->
isValid
(
"-O"
))
...
...
codemaker/source/cppumaker/cpputype.hxx
Dosyayı görüntüle @
8e995db6
...
...
@@ -138,8 +138,8 @@ protected:
protected
:
sal_uInt32
m_inheritedMemberCount
;
sal_Bool
m_cppuTypeLeak
;
sal_Bool
m_cppuTypeDynamic
;
bool
m_cppuTypeLeak
;
bool
m_cppuTypeDynamic
;
sal_Int32
m_indentLength
;
::
rtl
::
OString
m_typeName
;
::
rtl
::
OString
m_name
;
...
...
@@ -189,8 +189,8 @@ protected:
protected
:
sal_uInt32
m_inheritedMemberCount
;
sal_Bool
m_hasAttributes
;
sal_Bool
m_hasMethods
;
bool
m_hasAttributes
;
bool
m_hasMethods
;
private
:
void
dumpExceptionSpecification
(
...
...
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