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
00511b8e
Kaydet (Commit)
00511b8e
authored
Ock 23, 2010
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cmcfixes71: #i108597# fix uninit warnings
üst
60fdd548
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
sampleaddin.cxx
chart2/workbench/addin/sampleaddin.cxx
+1
-1
xistream.cxx
sc/source/filter/excel/xistream.cxx
+8
-8
cellsuno.cxx
sc/source/ui/unoobj/cellsuno.cxx
+1
-1
funcuno.cxx
sc/source/ui/unoobj/funcuno.cxx
+1
-1
No files found.
chart2/workbench/addin/sampleaddin.cxx
Dosyayı görüntüle @
00511b8e
...
...
@@ -138,7 +138,7 @@ sal_Bool SampleAddIn::getLogicalPosition( uno::Reference< drawing::XShape >& xAx
{
try
{
double
fMin
,
fMax
;
double
fMin
(
0.0
),
fMax
(
0.0
)
;
uno
::
Any
aAny
=
xProp
->
getPropertyValue
(
OUString
::
createFromAscii
(
"Min"
));
aAny
>>=
fMin
;
aAny
=
xProp
->
getPropertyValue
(
OUString
::
createFromAscii
(
"Max"
));
...
...
sc/source/filter/excel/xistream.cxx
Dosyayı görüntüle @
00511b8e
...
...
@@ -678,56 +678,56 @@ XclImpStream& XclImpStream::operator>>( double& rfValue )
sal_Int8
XclImpStream
::
ReadInt8
()
{
sal_Int8
nValue
;
sal_Int8
nValue
(
0
)
;
operator
>>
(
nValue
);
return
nValue
;
}
sal_uInt8
XclImpStream
::
ReaduInt8
()
{
sal_uInt8
nValue
;
sal_uInt8
nValue
(
0
)
;
operator
>>
(
nValue
);
return
nValue
;
}
sal_Int16
XclImpStream
::
ReadInt16
()
{
sal_Int16
nValue
;
sal_Int16
nValue
(
0
)
;
operator
>>
(
nValue
);
return
nValue
;
}
sal_uInt16
XclImpStream
::
ReaduInt16
()
{
sal_uInt16
nValue
;
sal_uInt16
nValue
(
0
)
;
operator
>>
(
nValue
);
return
nValue
;
}
sal_Int32
XclImpStream
::
ReadInt32
()
{
sal_Int32
nValue
;
sal_Int32
nValue
(
0
)
;
operator
>>
(
nValue
);
return
nValue
;
}
sal_uInt32
XclImpStream
::
ReaduInt32
()
{
sal_uInt32
nValue
;
sal_uInt32
nValue
(
0
)
;
operator
>>
(
nValue
);
return
nValue
;
}
float
XclImpStream
::
ReadFloat
()
{
float
fValue
;
float
fValue
(
0.0
)
;
operator
>>
(
fValue
);
return
fValue
;
}
double
XclImpStream
::
ReadDouble
()
{
double
fValue
;
double
fValue
(
0.0
)
;
operator
>>
(
fValue
);
return
fValue
;
}
...
...
sc/source/ui/unoobj/cellsuno.cxx
Dosyayı görüntüle @
00511b8e
...
...
@@ -1126,7 +1126,7 @@ BOOL lcl_PutDataArray( ScDocShell& rDocShell, const ScRange& rRange,
{
// #87871# accept integer types because Basic passes a floating point
// variable as byte, short or long if it's an integer number.
double fVal;
double fVal
(0.0)
;
rElement >>= fVal;
pDoc->SetValue( nDocCol, nDocRow, nTab, fVal );
}
...
...
sc/source/ui/unoobj/funcuno.cxx
Dosyayı görüntüle @
00511b8e
...
...
@@ -417,7 +417,7 @@ public:
{
// #87871# accept integer types because Basic passes a floating point
// variable as byte, short or long if it's an integer number.
double
fVal
;
double
fVal
(
0.0
)
;
rElement
>>=
fVal
;
visitElem
(
nCol
,
nRow
,
fVal
);
}
...
...
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