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
82ce4dd6
Kaydet (Commit)
82ce4dd6
authored
Şub 28, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
editeng: sal_Bool->bool
Change-Id: Icfda5e8e774b9b5a6c3d99b636e4ce772b93139d
üst
ec960fd3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
unoedprx.cxx
editeng/source/uno/unoedprx.cxx
+5
-5
unoedprx.hxx
include/editeng/unoedprx.hxx
+3
-3
No files found.
editeng/source/uno/unoedprx.cxx
Dosyayı görüntüle @
82ce4dd6
...
@@ -302,7 +302,7 @@ sal_Bool SvxAccessibleTextIndex::IsEditableRange( const SvxAccessibleTextIndex&
...
@@ -302,7 +302,7 @@ sal_Bool SvxAccessibleTextIndex::IsEditableRange( const SvxAccessibleTextIndex&
SvxEditSourceAdapter
::
SvxEditSourceAdapter
()
:
mbEditSourceValid
(
sal_F
alse
)
SvxEditSourceAdapter
::
SvxEditSourceAdapter
()
:
mbEditSourceValid
(
f
alse
)
{
{
}
}
...
@@ -363,7 +363,7 @@ SvxViewForwarder* SvxEditSourceAdapter::GetViewForwarder()
...
@@ -363,7 +363,7 @@ SvxViewForwarder* SvxEditSourceAdapter::GetViewForwarder()
return
NULL
;
return
NULL
;
}
}
SvxAccessibleTextEditViewAdapter
*
SvxEditSourceAdapter
::
GetEditViewForwarderAdapter
(
sal_B
ool
bCreate
)
SvxAccessibleTextEditViewAdapter
*
SvxEditSourceAdapter
::
GetEditViewForwarderAdapter
(
b
ool
bCreate
)
{
{
if
(
mbEditSourceValid
&&
mpAdaptee
.
get
()
)
if
(
mbEditSourceValid
&&
mpAdaptee
.
get
()
)
{
{
...
@@ -410,19 +410,19 @@ void SvxEditSourceAdapter::SetEditSource( ::std::auto_ptr< SvxEditSource > pAdap
...
@@ -410,19 +410,19 @@ void SvxEditSourceAdapter::SetEditSource( ::std::auto_ptr< SvxEditSource > pAdap
if
(
pAdaptee
.
get
()
)
if
(
pAdaptee
.
get
()
)
{
{
mpAdaptee
=
pAdaptee
;
mpAdaptee
=
pAdaptee
;
mbEditSourceValid
=
sal_T
rue
;
mbEditSourceValid
=
t
rue
;
}
}
else
else
{
{
// do a lazy delete (prevents us from deleting the broadcaster
// do a lazy delete (prevents us from deleting the broadcaster
// from within a broadcast in
// from within a broadcast in
// AccessibleTextHelper_Impl::Notify)
// AccessibleTextHelper_Impl::Notify)
mbEditSourceValid
=
sal_F
alse
;
mbEditSourceValid
=
f
alse
;
}
}
}
}
SAL_WNODEPRECATED_DECLARATIONS_POP
SAL_WNODEPRECATED_DECLARATIONS_POP
sal_B
ool
SvxEditSourceAdapter
::
IsValid
()
const
b
ool
SvxEditSourceAdapter
::
IsValid
()
const
{
{
return
mbEditSourceValid
;
return
mbEditSourceValid
;
}
}
...
...
include/editeng/unoedprx.hxx
Dosyayı görüntüle @
82ce4dd6
...
@@ -147,14 +147,14 @@ public:
...
@@ -147,14 +147,14 @@ public:
SvxAccessibleTextAdapter
*
GetTextForwarderAdapter
();
// covariant return types don't work on MSVC
SvxAccessibleTextAdapter
*
GetTextForwarderAdapter
();
// covariant return types don't work on MSVC
virtual
SvxViewForwarder
*
GetViewForwarder
();
virtual
SvxViewForwarder
*
GetViewForwarder
();
virtual
SvxEditViewForwarder
*
GetEditViewForwarder
(
bool
bCreate
=
false
)
SAL_OVERRIDE
;
virtual
SvxEditViewForwarder
*
GetEditViewForwarder
(
bool
bCreate
=
false
)
SAL_OVERRIDE
;
SvxAccessibleTextEditViewAdapter
*
GetEditViewForwarderAdapter
(
sal_Bool
bCreate
=
sal_F
alse
);
// covariant return types don't work on MSVC
SvxAccessibleTextEditViewAdapter
*
GetEditViewForwarderAdapter
(
bool
bCreate
=
f
alse
);
// covariant return types don't work on MSVC
virtual
void
UpdateData
();
virtual
void
UpdateData
();
virtual
SfxBroadcaster
&
GetBroadcaster
()
const
;
virtual
SfxBroadcaster
&
GetBroadcaster
()
const
;
SAL_WNODEPRECATED_DECLARATIONS_PUSH
SAL_WNODEPRECATED_DECLARATIONS_PUSH
void
SetEditSource
(
::
std
::
auto_ptr
<
SvxEditSource
>
pAdaptee
);
void
SetEditSource
(
::
std
::
auto_ptr
<
SvxEditSource
>
pAdaptee
);
SAL_WNODEPRECATED_DECLARATIONS_POP
SAL_WNODEPRECATED_DECLARATIONS_POP
sal_Bool
IsValid
()
const
;
bool
IsValid
()
const
;
private
:
private
:
// declared, but not defined
// declared, but not defined
...
@@ -170,7 +170,7 @@ private:
...
@@ -170,7 +170,7 @@ private:
mutable
SfxBroadcaster
maDummyBroadcaster
;
mutable
SfxBroadcaster
maDummyBroadcaster
;
sal_Bool
mbEditSourceValid
;
bool
mbEditSourceValid
;
};
};
#endif
#endif
...
...
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