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
2977e3e9
Kaydet (Commit)
2977e3e9
authored
Ara 13, 2011
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Prefer pre-increments, especially with iterators.
üst
db4bc681
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
AreaChart.cxx
chart2/source/view/charttypes/AreaChart.cxx
+3
-3
VSeriesPlotter.cxx
chart2/source/view/charttypes/VSeriesPlotter.cxx
+1
-1
No files found.
chart2/source/view/charttypes/AreaChart.cxx
Dosyayı görüntüle @
2977e3e9
...
...
@@ -637,7 +637,7 @@ void AreaChart::createShapes()
const
::
std
::
vector
<
::
std
::
vector
<
VDataSeriesGroup
>
>::
const_iterator
aZSlotEnd
=
m_aZSlots
.
end
();
std
::
map
<
sal_Int32
,
double
>
aLogicYSumMap
;
//one for each different nAttachedAxisIndex
for
(
;
aZSlotIter
!=
aZSlotEnd
;
aZSlotIter
++
)
for
(
;
aZSlotIter
!=
aZSlotEnd
;
++
aZSlotIter
)
{
::
std
::
vector
<
VDataSeriesGroup
>::
iterator
aXSlotIter
=
aZSlotIter
->
begin
();
const
::
std
::
vector
<
VDataSeriesGroup
>::
const_iterator
aXSlotEnd
=
aZSlotIter
->
end
();
...
...
@@ -673,7 +673,7 @@ void AreaChart::createShapes()
//=============================================================================
aZSlotIter
=
m_aZSlots
.
begin
();
for
(
sal_Int32
nZ
=
1
;
aZSlotIter
!=
aZSlotEnd
;
aZSlotIter
++
,
nZ
++
)
for
(
sal_Int32
nZ
=
1
;
aZSlotIter
!=
aZSlotEnd
;
++
aZSlotIter
,
++
nZ
)
{
::
std
::
vector
<
VDataSeriesGroup
>::
iterator
aXSlotIter
=
aZSlotIter
->
begin
();
const
::
std
::
vector
<
VDataSeriesGroup
>::
const_iterator
aXSlotEnd
=
aZSlotIter
->
end
();
...
...
@@ -797,7 +797,7 @@ void AreaChart::createShapes()
pPosHelper
->
isSameForGivenResolution
(
aFormerPoint
.
m_fX
,
aFormerPoint
.
m_fY
,
aFormerPoint
.
m_fZ
,
aScaledLogicPosition
.
PositionX
,
aScaledLogicPosition
.
PositionY
,
aScaledLogicPosition
.
PositionZ
)
)
{
nSkippedPoints
++
;
++
nSkippedPoints
;
m_bPointsWereSkipped
=
true
;
continue
;
}
...
...
chart2/source/view/charttypes/VSeriesPlotter.cxx
Dosyayı görüntüle @
2977e3e9
...
...
@@ -1405,7 +1405,7 @@ sal_Int32 VSeriesPlotter::getPointCount() const
::
std
::
vector
<
::
std
::
vector
<
VDataSeriesGroup
>
>::
const_iterator
aZSlotIter
=
m_aZSlots
.
begin
();
const
::
std
::
vector
<
::
std
::
vector
<
VDataSeriesGroup
>
>::
const_iterator
aZSlotEnd
=
m_aZSlots
.
end
();
for
(
;
aZSlotIter
!=
aZSlotEnd
;
aZSlotIter
++
)
for
(
;
aZSlotIter
!=
aZSlotEnd
;
++
aZSlotIter
)
{
::
std
::
vector
<
VDataSeriesGroup
>::
const_iterator
aXSlotIter
=
aZSlotIter
->
begin
();
const
::
std
::
vector
<
VDataSeriesGroup
>::
const_iterator
aXSlotEnd
=
aZSlotIter
->
end
();
...
...
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