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
d122fd76
Kaydet (Commit)
d122fd76
authored
Ara 08, 2011
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
de-inline display fetch/set functions to assist in debugging
üst
85863c13
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
optsitem.cxx
sd/source/ui/app/optsitem.cxx
+15
-0
optsitem.hxx
sd/source/ui/inc/optsitem.hxx
+2
-2
No files found.
sd/source/ui/app/optsitem.cxx
Dosyayı görüntüle @
d122fd76
...
@@ -1586,4 +1586,19 @@ void SdOptions::StoreConfig( sal_uLong nOptionsRange )
...
@@ -1586,4 +1586,19 @@ void SdOptions::StoreConfig( sal_uLong nOptionsRange )
SdOptionsPrint
::
Store
();
SdOptionsPrint
::
Store
();
}
}
sal_Int32
SdOptionsMisc
::
GetDisplay
()
const
{
Init
();
return
mnDisplay
;
}
void
SdOptionsMisc
::
SetDisplay
(
sal_Int32
nDisplay
)
{
if
(
mnDisplay
!=
nDisplay
)
{
OptionsChanged
();
mnDisplay
=
nDisplay
;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sd/source/ui/inc/optsitem.hxx
Dosyayı görüntüle @
d122fd76
...
@@ -329,8 +329,8 @@ public:
...
@@ -329,8 +329,8 @@ public:
sal_Bool
IsPreviewChangedEffects
()
const
{
Init
();
return
bPreviewChangedEffects
;
}
sal_Bool
IsPreviewChangedEffects
()
const
{
Init
();
return
bPreviewChangedEffects
;
}
sal_Bool
IsPreviewTransitions
()
const
{
Init
();
return
bPreviewTransitions
;
}
sal_Bool
IsPreviewTransitions
()
const
{
Init
();
return
bPreviewTransitions
;
}
sal_Int32
GetDisplay
()
const
{
Init
();
return
mnDisplay
;
}
sal_Int32
GetDisplay
()
const
;
void
SetDisplay
(
sal_Int32
nDisplay
=
0
)
{
if
(
mnDisplay
!=
nDisplay
)
{
OptionsChanged
();
mnDisplay
=
nDisplay
;
}
}
void
SetDisplay
(
sal_Int32
nDisplay
=
0
)
;
sal_Int32
GetPresentationPenColor
()
const
{
Init
();
return
mnPenColor
;
}
sal_Int32
GetPresentationPenColor
()
const
{
Init
();
return
mnPenColor
;
}
void
SetPresentationPenColor
(
sal_Int32
nPenColor
)
{
if
(
mnPenColor
!=
nPenColor
)
{
OptionsChanged
();
mnPenColor
=
nPenColor
;
}
}
void
SetPresentationPenColor
(
sal_Int32
nPenColor
)
{
if
(
mnPenColor
!=
nPenColor
)
{
OptionsChanged
();
mnPenColor
=
nPenColor
;
}
}
...
...
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