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
c9321851
Kaydet (Commit)
c9321851
authored
Tem 21, 2013
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused getRegressionCurve
Change-Id: I141182634e446745be6180702c703a85dac26552
üst
d3cbcbad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
40 deletions
+0
-40
unusedcode.easy
unusedcode.easy
+0
-1
SchXMLTools.cxx
xmloff/source/chart/SchXMLTools.cxx
+0
-32
SchXMLTools.hxx
xmloff/source/chart/SchXMLTools.hxx
+0
-7
No files found.
unusedcode.easy
Dosyayı görüntüle @
c9321851
...
...
@@ -59,7 +59,6 @@ ScRefCellValue::commit(ScColumn&, int) const
ScUndoSetCell::ScUndoSetCell(ScDocShell*, ScAddress const&, ScCellValue const&)
ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent()
ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any const&)
SchXMLTools::getRegressionCurve(com::sun::star::uno::Reference<com::sun::star::chart2::XDataSeries> const&)
ServerFont::GetGlyphBitmap1(int, RawBitmap&) const
ServerFont::GetGlyphBitmap8(int, RawBitmap&) const
SfxAppMenuControl_Impl::RegisterControl(unsigned short, SfxModule*)
...
...
xmloff/source/chart/SchXMLTools.cxx
Dosyayı görüntüle @
c9321851
...
...
@@ -604,38 +604,6 @@ void exportRangeToSomewhere( SvXMLExport& rExport, const OUString& rValue )
rExport
.
GetDocHandler
()
->
characters
(
rValue
);
}
Reference
<
chart2
::
XRegressionCurve
>
getRegressionCurve
(
const
Reference
<
chart2
::
XDataSeries
>
&
xDataSeries
)
{
Reference
<
chart2
::
XRegressionCurve
>
xResult
;
Reference
<
chart2
::
XRegressionCurveContainer
>
xRegCurveCnt
(
xDataSeries
,
uno
::
UNO_QUERY
);
if
(
xRegCurveCnt
.
is
())
{
// find equation properties of first regression curve
Sequence
<
Reference
<
chart2
::
XRegressionCurve
>
>
aCurveSeq
(
xRegCurveCnt
->
getRegressionCurves
()
);
for
(
sal_Int32
nI
=
0
;
nI
<
aCurveSeq
.
getLength
();
++
nI
)
{
// skip mean-value line
Reference
<
lang
::
XServiceName
>
xServiceName
(
aCurveSeq
[
nI
],
uno
::
UNO_QUERY
);
if
(
xServiceName
.
is
())
{
OUString
aServiceName
(
xServiceName
->
getServiceName
());
if
(
aServiceName
==
"com.sun.star.chart2.MeanValueRegressionCurve"
)
continue
;
}
// take first non-empty curve
if
(
aCurveSeq
[
nI
].
is
())
{
xResult
.
set
(
aCurveSeq
[
nI
]
);
break
;
}
}
}
return
xResult
;
}
void
setXMLRangePropertyAtDataSequence
(
const
Reference
<
chart2
::
data
::
XDataSequence
>
&
xDataSequence
,
const
OUString
&
rXMLRange
)
...
...
xmloff/source/chart/SchXMLTools.hxx
Dosyayı görüntüle @
c9321851
...
...
@@ -99,13 +99,6 @@ namespace SchXMLTools
void
exportRangeToSomewhere
(
SvXMLExport
&
rExport
,
const
OUString
&
rValue
);
/** returns the properties of the equation of the first regression curve
that is no mean-value line
*/
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
chart2
::
XRegressionCurve
>
getRegressionCurve
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
chart2
::
XDataSeries
>
&
xDataSeries
);
/** checks if the data sequence has the property "CachedXMLRange" (true for
internal data sequences), and if so sets this property to the range
given in rXMLRange
...
...
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