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
bd532483
Kaydet (Commit)
bd532483
authored
Nis 23, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use scoped_ptr for this.
Change-Id: I54d0bbe460f95ada7632d7c9cbedb8a677995fd4
üst
68fccdc9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
table3.cxx
sc/source/core/data/table3.cxx
+3
-4
No files found.
sc/source/core/data/table3.cxx
Dosyayı görüntüle @
bd532483
...
@@ -2063,9 +2063,9 @@ void ScTable::TopTenQuery( ScQueryParam& rParam )
...
@@ -2063,9 +2063,9 @@ void ScTable::TopTenQuery( ScQueryParam& rParam )
bSortCollatorInitialized
=
true
;
bSortCollatorInitialized
=
true
;
InitSortCollator
(
aLocalSortParam
);
InitSortCollator
(
aLocalSortParam
);
}
}
ScSortInfoArray
*
pArray
=
CreateSortInfoArray
(
nRow1
,
rParam
.
nRow2
,
bGlobalKeepQuery
);
boost
::
scoped_ptr
<
ScSortInfoArray
>
pArray
(
CreateSortInfoArray
(
nRow1
,
rParam
.
nRow2
,
bGlobalKeepQuery
)
);
DecoladeRow
(
pArray
,
nRow1
,
rParam
.
nRow2
);
DecoladeRow
(
pArray
.
get
()
,
nRow1
,
rParam
.
nRow2
);
QuickSort
(
pArray
,
nRow1
,
rParam
.
nRow2
);
QuickSort
(
pArray
.
get
()
,
nRow1
,
rParam
.
nRow2
);
ScSortInfo
**
ppInfo
=
pArray
->
GetFirstArray
();
ScSortInfo
**
ppInfo
=
pArray
->
GetFirstArray
();
SCSIZE
nValidCount
=
nCount
;
SCSIZE
nValidCount
=
nCount
;
// keine Note-/Leerzellen zaehlen, sind ans Ende sortiert
// keine Note-/Leerzellen zaehlen, sind ans Ende sortiert
...
@@ -2142,7 +2142,6 @@ void ScTable::TopTenQuery( ScQueryParam& rParam )
...
@@ -2142,7 +2142,6 @@ void ScTable::TopTenQuery( ScQueryParam& rParam )
rItem
.
meType
=
ScQueryEntry
::
ByValue
;
rItem
.
meType
=
ScQueryEntry
::
ByValue
;
rItem
.
mfVal
=
0
;
rItem
.
mfVal
=
0
;
}
}
delete
pArray
;
}
}
break
;
break
;
default
:
default
:
...
...
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