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
f276c005
Kaydet (Commit)
f276c005
authored
Ock 10, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Be explicit when using bool as integral value
Change-Id: I0712b56dbcf8508876ed6eca5e0f02d85b35af67
üst
cedba3ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
rscflag.hxx
rsc/inc/rscflag.hxx
+1
-1
start.cxx
rsc/source/prj/start.cxx
+1
-1
No files found.
rsc/inc/rscflag.hxx
Dosyayı görüntüle @
f276c005
...
...
@@ -86,7 +86,7 @@ public:
ERRTYPE
SetBool
(
const
RSCINST
&
rInst
,
bool
bValue
)
{
if
(
bValue
)
return
(
pRefClass
->
SetConst
(
rInst
,
nConstId
,
bValue
)
);
return
(
pRefClass
->
SetConst
(
rInst
,
nConstId
,
sal_Int32
(
bValue
)
)
);
else
return
(
pRefClass
->
SetNotConst
(
rInst
,
nConstId
)
);
...
...
rsc/source/prj/start.cxx
Dosyayı görüntüle @
f276c005
...
...
@@ -316,7 +316,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
for
(
size_t
k
=
0
,
n
=
aTmpList
.
size
();
k
<
n
;
++
k
)
unlink
(
aTmpList
[
k
]
->
getStr
()
);
return
bError
;
return
bError
?
EXIT_FAILURE
:
EXIT_SUCCESS
;
}
void
RscExit
(
sal_uInt32
nExit
)
...
...
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