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
a3066dd7
Kaydet (Commit)
a3066dd7
authored
Mar 12, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
No need for isKindOf to be SAL_CALL
Change-Id: Ia58af7d32904de01fdb5291203938c748cae94c6
üst
3228e1f7
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
9 deletions
+9
-9
object.cxx
store/source/object.cxx
+1
-1
object.hxx
store/source/object.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
+1
-1
No files found.
store/source/object.cxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -70,7 +70,7 @@ void OStoreObject::operator delete (void *p)
/*
* isKindOf.
*/
bool
SAL_CALL
OStoreObject
::
isKindOf
(
sal_uInt32
nTypeId
)
bool
OStoreObject
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/object.hxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -39,7 +39,7 @@ class IStoreHandle : public rtl::IReference
public
:
/** Replaces dynamic_cast type checking.
*/
virtual
bool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
)
=
0
;
virtual
bool
isKindOf
(
sal_uInt32
nTypeId
)
=
0
;
protected
:
~
IStoreHandle
()
{}
...
...
@@ -75,7 +75,7 @@ public:
/** IStoreHandle.
*/
virtual
bool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
)
;
virtual
bool
isKindOf
(
sal_uInt32
nTypeId
)
SAL_OVERRIDE
;
/** IReference.
*/
...
...
store/source/stordir.cxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -91,7 +91,7 @@ OStoreDirectory_Impl::~OStoreDirectory_Impl (void)
/*
* isKindOf.
*/
bool
SAL_CALL
OStoreDirectory_Impl
::
isKindOf
(
sal_uInt32
nTypeId
)
bool
OStoreDirectory_Impl
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/stordir.hxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -70,7 +70,7 @@ public:
/** IStoreHandle.
*/
virtual
bool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
)
;
virtual
bool
isKindOf
(
sal_uInt32
nTypeId
)
SAL_OVERRIDE
;
protected
:
/** Destruction.
...
...
store/source/storlckb.cxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -65,7 +65,7 @@ OStoreLockBytes::~OStoreLockBytes (void)
/*
* isKindOf.
*/
bool
SAL_CALL
OStoreLockBytes
::
isKindOf
(
sal_uInt32
nTypeId
)
bool
OStoreLockBytes
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/storlckb.hxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -105,7 +105,7 @@ public:
/** IStoreHandle.
*/
virtual
bool
SAL_CALL
isKindOf
(
sal_uInt32
nMagic
)
;
virtual
bool
isKindOf
(
sal_uInt32
nMagic
)
SAL_OVERRIDE
;
protected
:
/** Destruction (OReference).
...
...
store/source/storpage.cxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -60,7 +60,7 @@ OStorePageManager::~OStorePageManager (void)
/*
* isKindOf.
*/
bool
SAL_CALL
OStorePageManager
::
isKindOf
(
sal_uInt32
nTypeId
)
bool
OStorePageManager
::
isKindOf
(
sal_uInt32
nTypeId
)
{
return
(
nTypeId
==
m_nTypeId
);
}
...
...
store/source/storpage.hxx
Dosyayı görüntüle @
a3066dd7
...
...
@@ -130,7 +130,7 @@ public:
/** IStoreHandle.
*/
virtual
bool
SAL_CALL
isKindOf
(
sal_uInt32
nTypeId
)
;
virtual
bool
isKindOf
(
sal_uInt32
nTypeId
)
SAL_OVERRIDE
;
protected
:
/** Destruction.
...
...
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