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
4c6a30d5
Kaydet (Commit)
4c6a30d5
authored
Ara 05, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707985 Uninitialized scalar field
Change-Id: I1847b2900b513cc9b7b47767a15fb7e11d0abf26
üst
fe73f209
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
11 deletions
+2
-11
fillinfo.hxx
sc/inc/fillinfo.hxx
+1
-11
fillinfo.cxx
sc/source/core/data/fillinfo.cxx
+1
-0
No files found.
sc/inc/fillinfo.hxx
Dosyayı görüntüle @
4c6a30d5
...
...
@@ -143,7 +143,7 @@ struct RowInfo : boost::noncopyable
{
CellInfo
*
pCellInfo
;
sal_uInt16
nHeight
;
sal_uInt16
nHeight
;
SCROW
nRowNo
;
SCCOL
nRotMaxCol
;
// SC_ROTMAX_NONE, if nothing
...
...
@@ -152,12 +152,6 @@ struct RowInfo : boost::noncopyable
bool
bAutoFilter
:
1
;
bool
bPivotButton
:
1
;
bool
bChanged
:
1
;
// TRUE, if not tested
inline
explicit
RowInfo
()
:
pCellInfo
(
0
)
{}
private
:
RowInfo
(
const
RowInfo
&
);
RowInfo
&
operator
=
(
const
RowInfo
&
);
};
struct
ScTableInfo
:
boost
::
noncopyable
...
...
@@ -169,10 +163,6 @@ struct ScTableInfo : boost::noncopyable
explicit
ScTableInfo
();
~
ScTableInfo
();
private
:
ScTableInfo
(
const
ScTableInfo
&
);
ScTableInfo
&
operator
=
(
const
ScTableInfo
&
);
};
#endif
...
...
sc/source/core/data/fillinfo.cxx
Dosyayı görüntüle @
4c6a30d5
...
...
@@ -1120,6 +1120,7 @@ ScTableInfo::ScTableInfo()
,
mnArrCount
(
0
)
,
mbPageMode
(
false
)
{
memset
(
mpRowInfo
,
0
,
ROWINFO_MAX
*
sizeof
(
RowInfo
));
}
ScTableInfo
::~
ScTableInfo
()
...
...
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