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
12a0bf11
Kaydet (Commit)
12a0bf11
authored
Ara 18, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
We don't need these yet.
Change-Id: Iff875a690f319eb92ccfb8010853714ac60dcc9a
üst
d5452cef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
31 deletions
+0
-31
document.hxx
sc/inc/document.hxx
+0
-3
documen7.cxx
sc/source/core/data/documen7.cxx
+0
-28
No files found.
sc/inc/document.hxx
Dosyayı görüntüle @
12a0bf11
...
@@ -1818,9 +1818,6 @@ public:
...
@@ -1818,9 +1818,6 @@ public:
*/
*/
void
Broadcast
(
const
ScHint
&
rHint
);
void
Broadcast
(
const
ScHint
&
rHint
);
void
BroadcastCells
(
const
ScRange
&
rRange
,
sal_uLong
nHint
);
void
BroadcastCells
(
const
ScRangeList
&
rRanges
,
sal_uLong
nHint
);
/// only area, no cell broadcast
/// only area, no cell broadcast
void
AreaBroadcast
(
const
ScHint
&
rHint
);
void
AreaBroadcast
(
const
ScHint
&
rHint
);
/// only areas in range, no cell broadcasts
/// only areas in range, no cell broadcasts
...
...
sc/source/core/data/documen7.cxx
Dosyayı görüntüle @
12a0bf11
...
@@ -104,34 +104,6 @@ void ScDocument::Broadcast( const ScHint& rHint )
...
@@ -104,34 +104,6 @@ void ScDocument::Broadcast( const ScHint& rHint )
}
}
}
}
void
ScDocument
::
BroadcastCells
(
const
ScRange
&
rRange
,
sal_uLong
nHint
)
{
// TODO : For now, this simply makes multiple Broadcast() calls one cell
// at a time. In the future, we should add a more efficient way to
// make a range of cell broadcasts.
ScHint
aHint
(
nHint
,
rRange
.
aStart
);
for
(
SCCOL
nCol
=
rRange
.
aStart
.
Col
();
nCol
<=
rRange
.
aEnd
.
Col
();
++
nCol
)
{
for
(
SCROW
nRow
=
rRange
.
aStart
.
Row
();
nRow
<=
rRange
.
aEnd
.
Row
();
++
nRow
)
{
aHint
.
GetAddress
().
SetCol
(
nCol
);
aHint
.
GetAddress
().
SetRow
(
nRow
);
Broadcast
(
aHint
);
}
}
}
void
ScDocument
::
BroadcastCells
(
const
ScRangeList
&
rRanges
,
sal_uLong
nHint
)
{
for
(
size_t
i
=
0
,
n
=
rRanges
.
size
();
i
<
n
;
++
i
)
{
const
ScRange
*
p
=
rRanges
[
i
];
BroadcastCells
(
*
p
,
nHint
);
}
}
void
ScDocument
::
AreaBroadcast
(
const
ScHint
&
rHint
)
void
ScDocument
::
AreaBroadcast
(
const
ScHint
&
rHint
)
{
{
if
(
!
pBASM
)
if
(
!
pBASM
)
...
...
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