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
2b2a3ed3
Kaydet (Commit)
2b2a3ed3
authored
Şub 19, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#738862 Uninitialized scalar field
Change-Id: Ib970ef372e7754db890b5a4cd9c9b422a129ba02
üst
85f48b1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
winmtf.hxx
vcl/source/filter/wmf/winmtf.hxx
+7
-6
No files found.
vcl/source/filter/wmf/winmtf.hxx
Dosyayı görüntüle @
2b2a3ed3
...
...
@@ -337,18 +337,18 @@ typedef enum {
struct
WinMtfFillStyle
{
Color
aFillColor
;
sal_Bool
bTransparent
;
bool
bTransparent
;
WinMtfFillStyleType
aType
;
Bitmap
aBmp
;
WinMtfFillStyle
()
:
aFillColor
(
Color
(
COL_BLACK
))
,
bTransparent
(
sal_F
alse
)
,
bTransparent
(
f
alse
)
,
aType
(
FillStyleSolid
)
{
}
WinMtfFillStyle
(
const
Color
&
rColor
,
sal_Bool
bTrans
=
sal_False
)
WinMtfFillStyle
(
const
Color
&
rColor
,
bool
bTrans
=
false
)
:
aFillColor
(
rColor
)
,
bTransparent
(
bTrans
)
,
aType
(
FillStyleSolid
)
...
...
@@ -356,19 +356,20 @@ struct WinMtfFillStyle
}
WinMtfFillStyle
(
Bitmap
&
rBmp
)
:
aType
(
FillStylePattern
)
:
bTransparent
(
false
)
,
aType
(
FillStylePattern
)
,
aBmp
(
rBmp
)
{
}
sal_B
ool
operator
==
(
const
WinMtfFillStyle
&
rStyle
)
b
ool
operator
==
(
const
WinMtfFillStyle
&
rStyle
)
{
return
(
(
aFillColor
==
rStyle
.
aFillColor
)
&&
(
bTransparent
==
rStyle
.
bTransparent
)
&&
(
aType
==
rStyle
.
aType
)
);
}
sal_B
ool
operator
==
(
WinMtfFillStyle
*
pStyle
)
b
ool
operator
==
(
WinMtfFillStyle
*
pStyle
)
{
return
(
(
aFillColor
==
pStyle
->
aFillColor
)
&&
(
bTransparent
==
pStyle
->
bTransparent
)
...
...
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