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
b0494019
Kaydet (Commit)
b0494019
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: Ia11e61456f6d915aab9da798ce4a2f89e82c189d
üst
aa8f7902
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Section.cxx
reportdesign/source/core/api/Section.cxx
+1
-1
ReportController.cxx
reportdesign/source/ui/report/ReportController.cxx
+1
-1
No files found.
reportdesign/source/core/api/Section.cxx
Dosyayı görüntüle @
b0494019
...
...
@@ -458,7 +458,7 @@ uno::Type SAL_CALL OSection::getElementType( ) throw (uno::RuntimeException, st
sal_Bool
SAL_CALL
OSection
::
hasElements
(
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
return
m_xDrawPage
.
is
()
?
m_xDrawPage
->
hasElements
()
:
sal_False
;
return
m_xDrawPage
.
is
()
&&
m_xDrawPage
->
hasElements
()
;
}
// XIndexAccess
...
...
reportdesign/source/ui/report/ReportController.cxx
Dosyayı görüntüle @
b0494019
...
...
@@ -2762,7 +2762,7 @@ uno::Any SAL_CALL OReportController::getViewData() throw( uno::RuntimeException,
Any
aCommandState
;
if
(
!!
aFeatureState
.
bChecked
)
aCommandState
<<=
(
*
aFeatureState
.
bChecked
)
?
sal_True
:
sal_False
;
aCommandState
<<=
*
aFeatureState
.
bChecked
;
else
if
(
aFeatureState
.
aValue
.
hasValue
()
)
aCommandState
=
aFeatureState
.
aValue
;
...
...
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