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
6fae3211
Kaydet (Commit)
6fae3211
authored
Ock 11, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Dump field member IDs cached in the filtered cache object.
Change-Id: Id792e9e58a2c62b742eb07b400d30c5027bbc87b
üst
c5ade001
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
dpfilteredcache.cxx
sc/source/core/data/dpfilteredcache.cxx
+11
-1
No files found.
sc/source/core/data/dpfilteredcache.cxx
Dosyayı görüntüle @
6fae3211
...
...
@@ -437,7 +437,7 @@ void ScDPFilteredCache::dumpRowFlag(const RowFlagType& rFlag) const
void
ScDPFilteredCache
::
dump
()
const
{
cout
<<
"--- pivot
cache filter
dump"
<<
endl
;
cout
<<
"--- pivot
filtered cache
dump"
<<
endl
;
cout
<<
endl
;
cout
<<
"* show by filter"
<<
endl
;
...
...
@@ -447,6 +447,16 @@ void ScDPFilteredCache::dump() const
cout
<<
"* show by page dimensions"
<<
endl
;
dumpRowFlag
(
maShowByPage
);
cout
<<
endl
;
cout
<<
"* field entries"
<<
endl
;
size_t
nFieldCount
=
maFieldEntries
.
size
();
for
(
size_t
i
=
0
;
i
<
nFieldCount
;
++
i
)
{
const
vector
<
SCROW
>&
rField
=
maFieldEntries
[
i
];
cout
<<
" * field "
<<
i
<<
endl
;
for
(
size_t
j
=
0
,
n
=
rField
.
size
();
j
<
n
;
++
j
)
cout
<<
" ID: "
<<
rField
[
j
]
<<
endl
;
}
cout
<<
"---"
<<
endl
;
}
...
...
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