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
94782ede
Kaydet (Commit)
94782ede
authored
Eyl 17, 2016
tarafından
Tamás Zolnai
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix build with DEBUG_PIVOT_TABLE macro
Change-Id: Ia2e38469ab8df268c6e03d77cae76e16e454ad76
üst
96454829
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
dpcache.cxx
sc/source/core/data/dpcache.cxx
+2
-2
dpobject.cxx
sc/source/core/data/dpobject.cxx
+4
-4
pivot2.cxx
sc/source/core/data/pivot2.cxx
+1
-1
No files found.
sc/source/core/data/dpcache.cxx
Dosyayı görüntüle @
94782ede
...
...
@@ -1281,7 +1281,7 @@ void ScDPCache::Dump() const
FieldsType
::
const_iterator
it
=
maFields
.
begin
(),
itEnd
=
maFields
.
end
();
for
(
size_t
i
=
0
;
it
!=
itEnd
;
++
it
,
++
i
)
{
const
Field
&
fld
=
*
it
;
const
Field
&
fld
=
*
(
*
it
)
;
cout
<<
"* source dimension: "
<<
GetDimensionName
(
i
)
<<
" (ID = "
<<
i
<<
")"
<<
endl
;
cout
<<
" item count: "
<<
fld
.
maItems
.
size
()
<<
endl
;
if
(
bDumpItems
)
...
...
@@ -1306,7 +1306,7 @@ void ScDPCache::Dump() const
GroupFieldsType
::
const_iterator
it
=
maGroupFields
.
begin
(),
itEnd
=
maGroupFields
.
end
();
for
(
size_t
i
=
maFields
.
size
();
it
!=
itEnd
;
++
it
,
++
i
)
{
const
GroupItems
&
gi
=
*
it
;
const
GroupItems
&
gi
=
*
(
*
it
)
;
cout
<<
"* group dimension: (unnamed) (ID = "
<<
i
<<
")"
<<
endl
;
cout
<<
" item count: "
<<
gi
.
maItems
.
size
()
<<
endl
;
cout
<<
" group type: "
<<
getGroupTypeName
(
gi
.
mnGroupType
)
<<
endl
;
...
...
sc/source/core/data/dpobject.cxx
Dosyayı görüntüle @
94782ede
...
...
@@ -3778,12 +3778,12 @@ bool ScDPCollection::HasTable( const ScRange& rRange ) const
namespace
{
struct
DumpTable
:
std
::
unary_function
<
ScDPObject
,
void
>
struct
DumpTable
:
std
::
unary_function
<
std
::
unique_ptr
<
ScDPObject
>
,
void
>
{
void
operator
()
(
const
ScDPObject
&
rObj
)
const
void
operator
()
(
const
std
::
unique_ptr
<
ScDPObject
>
&
rObj
)
const
{
cout
<<
"-- '"
<<
rObj
.
GetName
()
<<
"'"
<<
endl
;
ScDPSaveData
*
pSaveData
=
rObj
.
GetSaveData
();
cout
<<
"-- '"
<<
rObj
->
GetName
()
<<
"'"
<<
endl
;
ScDPSaveData
*
pSaveData
=
rObj
->
GetSaveData
();
if
(
!
pSaveData
)
return
;
...
...
sc/source/core/data/pivot2.cxx
Dosyayı görüntüle @
94782ede
...
...
@@ -182,7 +182,7 @@ ScPivotFuncData::ScPivotFuncData( SCCOL nCol, PivotFunc nFuncMask ) :
void
ScPivotFuncData
::
Dump
()
const
{
cout
<<
"ScPivotFuncData: (col="
<<
mnCol
<<
", original dim="
<<
mnOriginalDim
<<
", func mask="
<<
mnFuncMask
<<
", duplicate count="
<<
static_cast
<
int
>
(
mnDupCount
)
<<
", func mask="
<<
static_cast
<
int
>
(
mnFuncMask
)
<<
", duplicate count="
<<
static_cast
<
int
>
(
mnDupCount
)
<<
")"
<<
endl
;
}
#endif
...
...
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