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
824c59a3
Kaydet (Commit)
824c59a3
authored
Şub 14, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
store: sal_Bool -> bool
Change-Id: I7d108e7ae387f9c07cce182a0bb09b69a6608226
üst
e59ae07a
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
17 additions
and
17 deletions
+17
-17
store.hxx
include/store/store.hxx
+1
-1
object.cxx
store/source/object.cxx
+1
-1
object.hxx
store/source/object.hxx
+2
-2
storbios.cxx
store/source/storbios.cxx
+1
-1
storbios.hxx
store/source/storbios.hxx
+2
-2
stordir.cxx
store/source/stordir.cxx
+1
-1
stordir.hxx
store/source/stordir.hxx
+1
-1
storlckb.cxx
store/source/storlckb.cxx
+1
-1
storlckb.hxx
store/source/storlckb.hxx
+1
-1
storpage.cxx
store/source/storpage.cxx
+1
-1
storpage.hxx
store/source/storpage.hxx
+3
-3
stortree.hxx
store/source/stortree.hxx
+2
-2
No files found.
include/store/store.hxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -326,7 +326,7 @@ public:
@param it [in] current directory entry.
@return sal_True to continue iteration, sal_False to stop.
*/
virtual
sal_B
ool
visit
(
const
iterator
&
it
)
=
0
;
virtual
b
ool
visit
(
const
iterator
&
it
)
=
0
;
protected
:
~
traveller
()
{}
...
...
store/source/object.cxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -71,7 +71,7 @@ void OStoreObject::operator delete (void *p)
/*
* isKindOf.
*/
sal_B
ool
SAL_CALL
OStoreObject
::
isKindOf
(
sal_uInt32
nTypeId
)
b
ool
SAL_CALL
OStoreObject
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/object.hxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -39,7 +39,7 @@ class IStoreHandle : public rtl::IReference
public
:
/** Replaces dynamic_cast type checking.
*/
virtual
sal_B
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
)
=
0
;
virtual
b
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
)
=
0
;
protected
:
~
IStoreHandle
()
{}
...
...
@@ -76,7 +76,7 @@ public:
/** IStoreHandle.
*/
virtual
sal_B
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
);
virtual
b
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
);
/** IReference.
*/
...
...
store/source/storbios.cxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -98,7 +98,7 @@ struct OStoreSuperBlock
/** Comparison.
*/
sal_B
ool
operator
==
(
const
OStoreSuperBlock
&
rhs
)
const
b
ool
operator
==
(
const
OStoreSuperBlock
&
rhs
)
const
{
return
((
m_aGuard
==
rhs
.
m_aGuard
)
&&
(
m_aDescr
==
rhs
.
m_aDescr
)
&&
...
...
store/source/storbios.hxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -83,7 +83,7 @@ public:
/** isValid.
*/
inline
sal_B
ool
isValid
(
void
)
const
;
inline
b
ool
isValid
(
void
)
const
;
/** Page Access.
*/
...
...
@@ -233,7 +233,7 @@ inline bool OStorePageBIOS::isWriteable (void) const
{
return
m_bWriteable
;
}
inline
sal_B
ool
OStorePageBIOS
::
isValid
(
void
)
const
inline
b
ool
OStorePageBIOS
::
isValid
(
void
)
const
{
return
m_xLockBytes
.
is
();
}
...
...
store/source/stordir.cxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -92,7 +92,7 @@ OStoreDirectory_Impl::~OStoreDirectory_Impl (void)
/*
* isKindOf.
*/
sal_B
ool
SAL_CALL
OStoreDirectory_Impl
::
isKindOf
(
sal_uInt32
nTypeId
)
b
ool
SAL_CALL
OStoreDirectory_Impl
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/stordir.hxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -70,7 +70,7 @@ public:
/** IStoreHandle.
*/
virtual
sal_B
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
);
virtual
b
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
);
protected
:
/** Destruction.
...
...
store/source/storlckb.cxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -66,7 +66,7 @@ OStoreLockBytes::~OStoreLockBytes (void)
/*
* isKindOf.
*/
sal_B
ool
SAL_CALL
OStoreLockBytes
::
isKindOf
(
sal_uInt32
nTypeId
)
b
ool
SAL_CALL
OStoreLockBytes
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/storlckb.hxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -105,7 +105,7 @@ public:
/** IStoreHandle.
*/
virtual
sal_B
ool
SAL_CALL
isKindOf
(
sal_uInt32
nMagic
);
virtual
b
ool
SAL_CALL
isKindOf
(
sal_uInt32
nMagic
);
protected
:
/** Destruction (OReference).
...
...
store/source/storpage.cxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -61,7 +61,7 @@ OStorePageManager::~OStorePageManager (void)
/*
* isKindOf.
*/
sal_B
ool
SAL_CALL
OStorePageManager
::
isKindOf
(
sal_uInt32
nTypeId
)
b
ool
SAL_CALL
OStorePageManager
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/storpage.hxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -58,7 +58,7 @@ public:
* @return sal_True upon successful initialization,
* sal_False otherwise.
*/
inline
sal_B
ool
isValid
(
void
)
const
;
inline
b
ool
isValid
(
void
)
const
;
/** DirectoryPage I/O (managed).
*/
...
...
@@ -130,7 +130,7 @@ public:
/** IStoreHandle.
*/
virtual
sal_B
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
);
virtual
b
ool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
);
protected
:
/** Destruction.
...
...
@@ -190,7 +190,7 @@ private:
OStorePageManager
&
operator
=
(
const
OStorePageManager
&
);
};
inline
sal_B
ool
OStorePageManager
::
isValid
(
void
)
const
inline
b
ool
OStorePageManager
::
isValid
(
void
)
const
{
return
(
base
::
isValid
()
/* @@@ NYI && (m_aRoot.is()) */
);
}
...
...
store/source/stortree.hxx
Dosyayı görüntüle @
824c59a3
...
...
@@ -198,14 +198,14 @@ struct OStoreBTreeNodeData : public store::OStorePageData
/** queryMerge.
*/
sal_B
ool
queryMerge
(
const
self
&
rPageR
)
const
b
ool
queryMerge
(
const
self
&
rPageR
)
const
{
return
((
usageCount
()
+
rPageR
.
usageCount
())
<=
capacityCount
());
}
/** querySplit.
*/
sal_B
ool
querySplit
(
void
)
const
b
ool
querySplit
(
void
)
const
{
return
(
!
(
usageCount
()
<
capacityCount
()));
}
...
...
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