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
c718cfd7
Kaydet (Commit)
c718cfd7
authored
Nis 24, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: I3f1fa86f62c2b2e32768a8d1e17793161339dad8
üst
1f7825a8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
helper.hxx
include/oox/helper/helper.hxx
+1
-1
seriescontext.cxx
oox/source/drawingml/chart/seriescontext.cxx
+1
-1
timenodelistcontext.cxx
oox/source/ppt/timenodelistcontext.cxx
+1
-1
No files found.
include/oox/helper/helper.hxx
Dosyayı görüntüle @
c718cfd7
...
...
@@ -204,7 +204,7 @@ public:
OptValue
&
operator
=
(
const
Type
&
rValue
)
{
set
(
rValue
);
return
*
this
;
}
bool
operator
==
(
const
OptValue
&
rValue
)
const
{
return
(
(
mbHasValue
==
fals
e
&&
rValue
.
mbHasValue
==
false
)
||
return
(
(
!
mbHasValu
e
&&
rValue
.
mbHasValue
==
false
)
||
(
mbHasValue
==
rValue
.
mbHasValue
&&
maValue
==
rValue
.
maValue
)
);
}
void
assignIfUsed
(
const
OptValue
&
rValue
)
{
if
(
rValue
.
mbHasValue
)
set
(
rValue
.
maValue
);
}
...
...
oox/source/drawingml/chart/seriescontext.cxx
Dosyayı görüntüle @
c718cfd7
...
...
@@ -41,7 +41,7 @@ ContextHandlerRef lclDataLabelSharedCreateContext( ContextHandler2& rContext,
if
(
rContext
.
isRootElement
()
)
switch
(
nElement
)
{
case
C_TOKEN
(
delete
):
orModel
.
mbDeleted
=
rAttribs
.
getBool
(
XML_val
,
bMSO2007
?
false
:
true
);
orModel
.
mbDeleted
=
rAttribs
.
getBool
(
XML_val
,
!
bMSO2007
);
return
0
;
case
C_TOKEN
(
dLblPos
):
orModel
.
monLabelPos
=
rAttribs
.
getToken
(
XML_val
,
XML_TOKEN_INVALID
);
...
...
oox/source/ppt/timenodelistcontext.cxx
Dosyayı görüntüle @
c718cfd7
...
...
@@ -859,7 +859,7 @@ namespace oox { namespace ppt {
if
(
!
sFilter
.
isEmpty
()
)
{
SlideTransition
aFilter
(
sFilter
);
aFilter
.
setMode
(
nDir
==
XML_out
?
false
:
true
);
aFilter
.
setMode
(
nDir
!=
XML_out
);
pNode
->
setTransitionFilter
(
aFilter
);
}
}
...
...
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