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
bd161794
Kaydet (Commit)
bd161794
authored
Ock 20, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added 'm' prefix for a data member.
üst
cc86807e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
5 deletions
+5
-5
column.hxx
sc/inc/column.hxx
+2
-2
column.cxx
sc/source/core/data/column.cxx
+0
-0
column2.cxx
sc/source/core/data/column2.cxx
+0
-0
column3.cxx
sc/source/core/data/column3.cxx
+0
-0
dociter.cxx
sc/source/core/data/dociter.cxx
+0
-0
fillinfo.cxx
sc/source/core/data/fillinfo.cxx
+3
-3
No files found.
sc/inc/column.hxx
Dosyayı görüntüle @
bd161794
...
@@ -106,7 +106,7 @@ private:
...
@@ -106,7 +106,7 @@ private:
SCCOL
nCol
;
SCCOL
nCol
;
SCTAB
nTab
;
SCTAB
nTab
;
std
::
vector
<
ColEntry
>
aItems
;
std
::
vector
<
ColEntry
>
m
aItems
;
ScAttrArray
*
pAttrArray
;
ScAttrArray
*
pAttrArray
;
ScDocument
*
pDocument
;
ScDocument
*
pDocument
;
...
@@ -256,7 +256,7 @@ public:
...
@@ -256,7 +256,7 @@ public:
double
GetValue
(
SCROW
nRow
)
const
;
double
GetValue
(
SCROW
nRow
)
const
;
void
GetFormula
(
SCROW
nRow
,
rtl
::
OUString
&
rFormula
)
const
;
void
GetFormula
(
SCROW
nRow
,
rtl
::
OUString
&
rFormula
)
const
;
CellType
GetCellType
(
SCROW
nRow
)
const
;
CellType
GetCellType
(
SCROW
nRow
)
const
;
SCSIZE
GetCellCount
()
const
{
return
aItems
.
size
();
}
SCSIZE
GetCellCount
()
const
{
return
m
aItems
.
size
();
}
sal_uInt32
GetWeightedCount
()
const
;
sal_uInt32
GetWeightedCount
()
const
;
sal_uInt32
GetCodeCount
()
const
;
// RPN-Code in formulas
sal_uInt32
GetCodeCount
()
const
;
// RPN-Code in formulas
sal_uInt16
GetErrCode
(
SCROW
nRow
)
const
;
sal_uInt16
GetErrCode
(
SCROW
nRow
)
const
;
...
...
sc/source/core/data/column.cxx
Dosyayı görüntüle @
bd161794
This diff is collapsed.
Click to expand it.
sc/source/core/data/column2.cxx
Dosyayı görüntüle @
bd161794
This diff is collapsed.
Click to expand it.
sc/source/core/data/column3.cxx
Dosyayı görüntüle @
bd161794
This diff is collapsed.
Click to expand it.
sc/source/core/data/dociter.cxx
Dosyayı görüntüle @
bd161794
This diff is collapsed.
Click to expand it.
sc/source/core/data/fillinfo.cxx
Dosyayı görüntüle @
bd161794
...
@@ -390,8 +390,8 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
...
@@ -390,8 +390,8 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
bool
bHiddenRow
=
true
;
bool
bHiddenRow
=
true
;
SCROW
nHiddenEndRow
=
-
1
;
SCROW
nHiddenEndRow
=
-
1
;
(
void
)
pThisCol
->
Search
(
nY1
,
nUIndex
);
(
void
)
pThisCol
->
Search
(
nY1
,
nUIndex
);
while
(
nUIndex
<
pThisCol
->
aItems
.
size
()
&&
while
(
nUIndex
<
pThisCol
->
m
aItems
.
size
()
&&
(
nThisRow
=
pThisCol
->
aItems
[
nUIndex
].
nRow
)
<=
nY2
)
(
nThisRow
=
pThisCol
->
m
aItems
[
nUIndex
].
nRow
)
<=
nY2
)
{
{
if
(
nThisRow
>
nHiddenEndRow
)
if
(
nThisRow
>
nHiddenEndRow
)
bHiddenRow
=
RowHidden
(
nThisRow
,
nTab
,
NULL
,
&
nHiddenEndRow
);
bHiddenRow
=
RowHidden
(
nThisRow
,
nTab
,
NULL
,
&
nHiddenEndRow
);
...
@@ -403,7 +403,7 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
...
@@ -403,7 +403,7 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
RowInfo
*
pThisRowInfo
=
&
pRowInfo
[
nArrY
];
RowInfo
*
pThisRowInfo
=
&
pRowInfo
[
nArrY
];
CellInfo
*
pInfo
=
&
pThisRowInfo
->
pCellInfo
[
nArrX
];
CellInfo
*
pInfo
=
&
pThisRowInfo
->
pCellInfo
[
nArrX
];
pInfo
->
pCell
=
pThisCol
->
aItems
[
nUIndex
].
pCell
;
pInfo
->
pCell
=
pThisCol
->
m
aItems
[
nUIndex
].
pCell
;
if
(
pInfo
->
pCell
->
GetCellType
()
!=
CELLTYPE_NOTE
)
if
(
pInfo
->
pCell
->
GetCellType
()
!=
CELLTYPE_NOTE
)
{
{
pThisRowInfo
->
bEmptyText
=
false
;
// Zeile nicht leer
pThisRowInfo
->
bEmptyText
=
false
;
// Zeile nicht leer
...
...
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