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
22040a74
Kaydet (Commit)
22040a74
authored
Kas 27, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool to bool.
Change-Id: I63bff9f8ba19e8f037edf29bc82555b8c6e77d1e
üst
591e284d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
viewdataentry.hxx
svtools/inc/svtools/viewdataentry.hxx
+2
-2
viewdataentry.cxx
svtools/source/contnr/viewdataentry.cxx
+2
-2
No files found.
svtools/inc/svtools/viewdataentry.hxx
Dosyayı görüntüle @
22040a74
...
...
@@ -51,8 +51,8 @@ public:
bool
HasFocus
()
const
;
bool
IsCursored
()
const
;
bool
IsSelectable
()
const
;
void
SetFocus
(
sal_Bool
bFocus
);
void
SetCursored
(
sal_B
ool
bCursored
);
void
SetFocus
(
bool
bFocus
);
void
SetCursored
(
b
ool
bCursored
);
sal_uInt16
GetFlags
()
const
;
void
SetSelectable
(
bool
bSelectable
);
};
...
...
svtools/source/contnr/viewdataentry.cxx
Dosyayı görüntüle @
22040a74
...
...
@@ -72,7 +72,7 @@ bool SvViewData::IsSelectable() const
return
(
nFlags
&
SVLISTENTRYFLAG_NOT_SELECTABLE
)
==
0
;
}
void
SvViewData
::
SetFocus
(
sal_Bool
bFocus
)
void
SvViewData
::
SetFocus
(
bool
bFocus
)
{
if
(
!
bFocus
)
nFlags
&=
(
~
SVLISTENTRYFLAG_FOCUSED
);
...
...
@@ -80,7 +80,7 @@ void SvViewData::SetFocus( sal_Bool bFocus)
nFlags
|=
SVLISTENTRYFLAG_FOCUSED
;
}
void
SvViewData
::
SetCursored
(
sal_B
ool
bCursored
)
void
SvViewData
::
SetCursored
(
b
ool
bCursored
)
{
if
(
!
bCursored
)
nFlags
&=
(
~
SVLISTENTRYFLAG_CURSORED
);
...
...
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