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
89e33144
Kaydet (Commit)
89e33144
authored
Tem 16, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: I06df26c474689126f80236866bd547332e293969
üst
8f12dcbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ximppage.cxx
xmloff/source/draw/ximppage.cxx
+1
-1
impastpl.cxx
xmloff/source/style/impastpl.cxx
+1
-1
No files found.
xmloff/source/draw/ximppage.cxx
Dosyayı görüntüle @
89e33144
...
...
@@ -577,7 +577,7 @@ Type SAL_CALL XoNavigationOrderAccess::getElementType( ) throw (RuntimeExceptio
sal_Bool
SAL_CALL
XoNavigationOrderAccess
::
hasElements
(
)
throw
(
RuntimeException
,
std
::
exception
)
{
return
maShapes
.
empty
()
?
sal_False
:
sal_True
;
return
!
maShapes
.
empty
()
;
}
void
SdXMLGenericPageContext
::
SetNavigationOrder
()
...
...
xmloff/source/style/impastpl.cxx
Dosyayı görüntüle @
89e33144
...
...
@@ -106,7 +106,7 @@ data2string(void *data,
case
typelib_TypeClass_VOID
:
break
;
case
typelib_TypeClass_BOOLEAN
:
result
.
append
(
(
*
static_cast
<
const
sal_Bool
*>
(
data
)
==
sal_False
)
?
OUString
(
"false"
)
:
OUString
(
"tru
e"
));
result
.
append
(
*
static_cast
<
const
sal_Bool
*>
(
data
)
?
OUString
(
"true"
)
:
OUString
(
"fals
e"
));
break
;
case
typelib_TypeClass_BYTE
:
result
.
append
(
OUString
::
number
((
*
static_cast
<
const
sal_Int8
*>
(
data
))));
...
...
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