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
d30ee7f7
Kaydet (Commit)
d30ee7f7
authored
Nis 11, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707812 Uninitialized scalar field
Change-Id: I04e65d6c0124a2f370ae006bbaa991d5e7753e12
üst
36c84fa3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
7 deletions
+43
-7
chart.hxx
filter/source/graphicfilter/icgm/chart.hxx
+43
-7
No files found.
filter/source/graphicfilter/icgm/chart.hxx
Dosyayı görüntüle @
d30ee7f7
...
...
@@ -91,7 +91,7 @@ typedef struct TextEntry
TextAttribute
*
pAttribute
;
}
TextEntry
;
typedef
struct
ZoneOption
struct
ZoneOption
{
char
nOverTitle
;
char
nOverBody
;
...
...
@@ -105,18 +105,43 @@ typedef struct ZoneOption
char
nFFillc_Title
;
char
nFFillc_Body
;
char
nFFillc_Foot
;
}
ZoneOption
;
ZoneOption
()
:
nOverTitle
(
0
)
,
nOverBody
(
0
)
,
nOverFoot
(
0
)
,
nFStyle_Title
(
0
)
,
nFStyle_Body
(
0
)
,
nFStyle_Foot
(
0
)
,
nFOutc_Title
(
0
)
,
nFOutc_Body
(
0
)
,
nFOutc_Foot
(
0
)
,
nFFillc_Title
(
0
)
,
nFFillc_Body
(
0
)
,
nFFillc_Foot
(
0
)
{
}
};
typedef
struct
BulletOption
struct
BulletOption
{
char
nBType
;
char
nBSize
;
char
nBColor
;
sal_Int16
nBStart
;
sal_Int16
nBStart
;
double
nTMargin
;
double
nBSpace
;
char
nCPlace
;
}
BulletOption
;
BulletOption
()
:
nBType
(
0
)
,
nBSize
(
0
)
,
nBColor
(
0
)
,
nBStart
(
0
)
,
nTMargin
(
0
)
,
nBSpace
(
0
)
,
nCPlace
(
0
)
{
}
};
typedef
struct
BulDef
{
...
...
@@ -131,7 +156,7 @@ typedef struct BulletLines
BulDef
nBulDef
[
48
];
}
BulletLines
;
typedef
struct
IntSettings
struct
IntSettings
{
sal_uInt16
nCountry
;
sal_uInt16
nDateFormat
;
...
...
@@ -141,7 +166,18 @@ typedef struct IntSettings
sal_uInt16
nNumSeps
;
sal_uInt16
nCurrencyFormat
;
char
nCurrencySymbol
[
5
];
}
IntSettings
;
IntSettings
()
:
nCountry
(
0
)
,
nDateFormat
(
0
)
,
nDateSep
(
0
)
,
nTimeFormat
(
0
)
,
nTimeSep
(
0
)
,
nNumSeps
(
0
)
,
nCurrencyFormat
(
0
)
{
memset
(
nCurrencySymbol
,
0
,
sizeof
(
nCurrencySymbol
));
}
};
typedef
struct
PageOrientDim
{
...
...
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