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
e29c7747
Kaydet (Commit)
e29c7747
authored
Şub 11, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool
Change-Id: Ibd272f99af356d3dd16feeca2354dc502c685218
üst
4b852b30
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
hints.hxx
sc/inc/hints.hxx
+5
-5
hints.cxx
sc/source/core/tool/hints.cxx
+1
-1
No files found.
sc/inc/hints.hxx
Dosyayı görüntüle @
e29c7747
...
...
@@ -27,8 +27,8 @@
class
ScPaintHint
:
public
SfxHint
{
ScRange
aRange
;
sal_uInt16
nParts
;
sal_B
ool
bPrint
;
// flag indicating whether print/preview if affected
sal_uInt16
nParts
;
b
ool
bPrint
;
// flag indicating whether print/preview if affected
ScPaintHint
();
// disabled
...
...
@@ -37,7 +37,7 @@ public:
ScPaintHint
(
const
ScRange
&
rRng
,
sal_uInt16
nPaint
=
PAINT_ALL
);
~
ScPaintHint
();
void
SetPrintFlag
(
sal_B
ool
bSet
)
{
bPrint
=
bSet
;
}
void
SetPrintFlag
(
b
ool
bSet
)
{
bPrint
=
bSet
;
}
const
ScRange
&
GetRange
()
const
{
return
aRange
;
}
SCCOL
GetStartCol
()
const
{
return
aRange
.
aStart
.
Col
();
}
...
...
@@ -46,8 +46,8 @@ public:
SCCOL
GetEndCol
()
const
{
return
aRange
.
aEnd
.
Col
();
}
SCROW
GetEndRow
()
const
{
return
aRange
.
aEnd
.
Row
();
}
SCTAB
GetEndTab
()
const
{
return
aRange
.
aEnd
.
Tab
();
}
sal_uInt16
GetParts
()
const
{
return
nParts
;
}
sal_B
ool
GetPrintFlag
()
const
{
return
bPrint
;
}
sal_uInt16
GetParts
()
const
{
return
nParts
;
}
b
ool
GetPrintFlag
()
const
{
return
bPrint
;
}
};
class
ScUpdateRefHint
:
public
SfxHint
...
...
sc/source/core/tool/hints.cxx
Dosyayı görüntüle @
e29c7747
...
...
@@ -32,7 +32,7 @@ TYPEINIT1(ScDataPilotModifiedHint, SfxHint);
ScPaintHint
::
ScPaintHint
(
const
ScRange
&
rRng
,
sal_uInt16
nPaint
)
:
aRange
(
rRng
),
nParts
(
nPaint
),
bPrint
(
sal_T
rue
)
bPrint
(
t
rue
)
{
}
...
...
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