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
63a9dcac
Kaydet (Commit)
63a9dcac
authored
Şub 12, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool
Change-Id: Ib212996d8eb1461f32bf99d1fcd4e33be6cd3fce
üst
11cea9af
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
printopt.hxx
sc/inc/printopt.hxx
+8
-8
printopt.cxx
sc/source/core/tool/printopt.cxx
+1
-1
No files found.
sc/inc/printopt.hxx
Dosyayı görüntüle @
63a9dcac
...
@@ -27,21 +27,21 @@
...
@@ -27,21 +27,21 @@
class
SC_DLLPUBLIC
ScPrintOptions
class
SC_DLLPUBLIC
ScPrintOptions
{
{
private
:
private
:
sal_B
ool
bSkipEmpty
;
b
ool
bSkipEmpty
;
sal_B
ool
bAllSheets
;
b
ool
bAllSheets
;
sal_B
ool
bForceBreaks
;
b
ool
bForceBreaks
;
public
:
public
:
ScPrintOptions
();
ScPrintOptions
();
ScPrintOptions
(
const
ScPrintOptions
&
rCpy
);
ScPrintOptions
(
const
ScPrintOptions
&
rCpy
);
~
ScPrintOptions
();
~
ScPrintOptions
();
sal_B
ool
GetSkipEmpty
()
const
{
return
bSkipEmpty
;
}
b
ool
GetSkipEmpty
()
const
{
return
bSkipEmpty
;
}
void
SetSkipEmpty
(
sal_B
ool
bVal
)
{
bSkipEmpty
=
bVal
;
}
void
SetSkipEmpty
(
b
ool
bVal
)
{
bSkipEmpty
=
bVal
;
}
sal_B
ool
GetAllSheets
()
const
{
return
bAllSheets
;
}
b
ool
GetAllSheets
()
const
{
return
bAllSheets
;
}
void
SetAllSheets
(
sal_B
ool
bVal
)
{
bAllSheets
=
bVal
;
}
void
SetAllSheets
(
b
ool
bVal
)
{
bAllSheets
=
bVal
;
}
bool
GetForceBreaks
()
const
{
return
bForceBreaks
;
}
bool
GetForceBreaks
()
const
{
return
bForceBreaks
;
}
void
SetForceBreaks
(
sal_B
ool
bVal
)
{
bForceBreaks
=
bVal
;
}
void
SetForceBreaks
(
b
ool
bVal
)
{
bForceBreaks
=
bVal
;
}
void
SetDefaults
();
void
SetDefaults
();
...
...
sc/source/core/tool/printopt.cxx
Dosyayı görüntüle @
63a9dcac
...
@@ -46,7 +46,7 @@ ScPrintOptions::~ScPrintOptions()
...
@@ -46,7 +46,7 @@ ScPrintOptions::~ScPrintOptions()
void
ScPrintOptions
::
SetDefaults
()
void
ScPrintOptions
::
SetDefaults
()
{
{
bSkipEmpty
=
sal_T
rue
;
bSkipEmpty
=
t
rue
;
bAllSheets
=
false
;
bAllSheets
=
false
;
bForceBreaks
=
false
;
bForceBreaks
=
false
;
}
}
...
...
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