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
891c80e1
Kaydet (Commit)
891c80e1
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: I8b704401233fa865c8ec4d4663d720a3d7d8de69
üst
d9dd11e1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
FormComponent.cxx
forms/source/component/FormComponent.cxx
+2
-2
attributedispatcher.cxx
forms/source/richtext/attributedispatcher.cxx
+1
-1
namedcollection.hxx
forms/source/xforms/namedcollection.hxx
+1
-1
No files found.
forms/source/component/FormComponent.cxx
Dosyayı görüntüle @
891c80e1
...
@@ -321,12 +321,12 @@ void SAL_CALL OControl::setDesignMode(sal_Bool bOn) throw ( RuntimeException, st
...
@@ -321,12 +321,12 @@ void SAL_CALL OControl::setDesignMode(sal_Bool bOn) throw ( RuntimeException, st
sal_Bool
SAL_CALL
OControl
::
isDesignMode
()
throw
(
RuntimeException
,
std
::
exception
)
sal_Bool
SAL_CALL
OControl
::
isDesignMode
()
throw
(
RuntimeException
,
std
::
exception
)
{
{
return
m_xControl
.
is
()
?
m_xControl
->
isDesignMode
()
:
sal_True
;
return
!
m_xControl
.
is
()
||
m_xControl
->
isDesignMode
()
;
}
}
sal_Bool
SAL_CALL
OControl
::
isTransparent
()
throw
(
RuntimeException
,
std
::
exception
)
sal_Bool
SAL_CALL
OControl
::
isTransparent
()
throw
(
RuntimeException
,
std
::
exception
)
{
{
return
m_xControl
.
is
()
?
m_xControl
->
isTransparent
()
:
sal_True
;
return
!
m_xControl
.
is
()
||
m_xControl
->
isTransparent
()
;
}
}
OBoundControl
::
OBoundControl
(
const
Reference
<
XComponentContext
>&
_rxContext
,
OBoundControl
::
OBoundControl
(
const
Reference
<
XComponentContext
>&
_rxContext
,
...
...
forms/source/richtext/attributedispatcher.cxx
Dosyayı görüntüle @
891c80e1
...
@@ -68,7 +68,7 @@ namespace frm
...
@@ -68,7 +68,7 @@ namespace frm
FeatureStateEvent
OAttributeDispatcher
::
buildStatusEvent
()
const
FeatureStateEvent
OAttributeDispatcher
::
buildStatusEvent
()
const
{
{
FeatureStateEvent
aEvent
(
ORichTextFeatureDispatcher
::
buildStatusEvent
()
);
FeatureStateEvent
aEvent
(
ORichTextFeatureDispatcher
::
buildStatusEvent
()
);
aEvent
.
IsEnabled
=
getEditView
()
?
!
getEditView
()
->
IsReadOnly
()
:
sal_False
;
aEvent
.
IsEnabled
=
getEditView
()
&&
!
getEditView
()
->
IsReadOnly
()
;
AttributeState
aState
;
AttributeState
aState
;
if
(
m_pMasterDispatcher
)
if
(
m_pMasterDispatcher
)
...
...
forms/source/xforms/namedcollection.hxx
Dosyayı görüntüle @
891c80e1
...
@@ -127,7 +127,7 @@ public:
...
@@ -127,7 +127,7 @@ public:
const
OUString
&
aName
)
const
OUString
&
aName
)
throw
(
css
::
uno
::
RuntimeException
)
SAL_OVERRIDE
throw
(
css
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
{
return
hasItem
(
aName
)
?
sal_True
:
sal_False
;
return
hasItem
(
aName
);
}
}
};
};
...
...
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