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
4815d3da
Kaydet (Commit)
4815d3da
authored
Nis 27, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More loplugin:simplifybool
Change-Id: If2eef4011382f48b31d8d6289e4bf725a8cb60ae
üst
0e4d62ad
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
selector.cxx
cui/source/customize/selector.cxx
+2
-2
SpellDialog.cxx
cui/source/dialogs/SpellDialog.cxx
+1
-1
tpbitmap.cxx
cui/source/tabpages/tpbitmap.cxx
+1
-1
tpcolor.cxx
cui/source/tabpages/tpcolor.cxx
+1
-1
tpgradnt.cxx
cui/source/tabpages/tpgradnt.cxx
+1
-1
tphatch.cxx
cui/source/tabpages/tphatch.cxx
+1
-1
No files found.
cui/source/customize/selector.cxx
Dosyayı görüntüle @
4815d3da
...
...
@@ -959,7 +959,7 @@ IMPL_LINK( SvxScriptSelectorDialog, ClickHdl, Button *, pButton )
{
// If we are displaying Slot API commands then the dialog is being
// run from Tools/Configure and we should not close it, just hide it
if
(
m_bShowSlots
==
false
)
if
(
!
m_bShowSlots
)
{
EndDialog
(
RET_CANCEL
);
}
...
...
@@ -974,7 +974,7 @@ IMPL_LINK( SvxScriptSelectorDialog, ClickHdl, Button *, pButton )
// If we are displaying Slot API commands then this the dialog is being
// run from Tools/Configure and we should not close it
if
(
m_bShowSlots
==
false
)
if
(
!
m_bShowSlots
)
{
EndDialog
(
RET_OK
);
}
...
...
cui/source/dialogs/SpellDialog.cxx
Dosyayı görüntüle @
4815d3da
...
...
@@ -382,7 +382,7 @@ void SpellDialog::SpellContinue_Impl(bool bUseSavedSentence, bool bIgnoreCurrent
//MarkNextError is not initially called if the UndoEdit mode is active
bool
bNextSentence
=
false
;
if
((
!
m_pSentenceED
->
IsUndoEditMode
()
&&
m_pSentenceED
->
MarkNextError
(
bIgnoreCurrentError
,
xSpell
))
||
true
==
(
bNextSentence
=
GetNextSentence_Impl
(
bUseSavedSentence
,
m_pSentenceED
->
IsUndoEditMode
())
&&
m_pSentenceED
->
MarkNextError
(
false
,
xSpell
)))
(
bNextSentence
=
GetNextSentence_Impl
(
bUseSavedSentence
,
m_pSentenceED
->
IsUndoEditMode
())
&&
m_pSentenceED
->
MarkNextError
(
false
,
xSpell
)))
{
const
SpellErrorDescription
*
pSpellErrorDescription
=
m_pSentenceED
->
GetAlternatives
();
if
(
pSpellErrorDescription
)
...
...
cui/source/tabpages/tpbitmap.cxx
Dosyayı görüntüle @
4815d3da
...
...
@@ -230,7 +230,7 @@ int SvxBitmapTabPage::DeactivatePage( SfxItemSet* _pSet)
bool
SvxBitmapTabPage
::
FillItemSet
(
SfxItemSet
*
_rOutAttrs
)
{
if
(
nDlgType
==
0
&&
*
pbAreaTP
==
false
)
// area dialog
if
(
nDlgType
==
0
&&
!*
pbAreaTP
)
// area dialog
{
if
(
PT_BITMAP
==
*
pPageType
)
{
...
...
cui/source/tabpages/tpcolor.cxx
Dosyayı görüntüle @
4815d3da
...
...
@@ -559,7 +559,7 @@ long SvxColorTabPage::CheckChanges_Impl()
bool
SvxColorTabPage
::
FillItemSet
(
SfxItemSet
*
rSet
)
{
if
(
(
nDlgType
!=
0
)
||
(
*
pPageType
==
PT_COLOR
&&
*
pbAreaTP
==
false
)
)
(
*
pPageType
==
PT_COLOR
&&
!*
pbAreaTP
)
)
{
OUString
aString
;
Color
aColor
;
...
...
cui/source/tabpages/tpgradnt.cxx
Dosyayı görüntüle @
4815d3da
...
...
@@ -309,7 +309,7 @@ long SvxGradientTabPage::CheckChanges_Impl()
bool
SvxGradientTabPage
::
FillItemSet
(
SfxItemSet
*
rSet
)
{
if
(
nDlgType
==
0
&&
*
pPageType
==
PT_GRADIENT
&&
*
pbAreaTP
==
false
)
if
(
nDlgType
==
0
&&
*
pPageType
==
PT_GRADIENT
&&
!*
pbAreaTP
)
{
// CheckChanges(); <-- duplicate inquiry ?
...
...
cui/source/tabpages/tphatch.cxx
Dosyayı görüntüle @
4815d3da
...
...
@@ -281,7 +281,7 @@ long SvxHatchTabPage::CheckChanges_Impl()
bool
SvxHatchTabPage
::
FillItemSet
(
SfxItemSet
*
rSet
)
{
if
(
nDlgType
==
0
&&
*
pbAreaTP
==
false
)
// area dialog
if
(
nDlgType
==
0
&&
!*
pbAreaTP
)
// area dialog
{
if
(
*
pPageType
==
PT_HATCH
)
{
...
...
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