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
123dd186
Kaydet (Commit)
123dd186
authored
May 29, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:redundantcast: const_cast to same type
Change-Id: Ic4e5afab0e948392a0f2e4bdeab84afffa3e647f
üst
d9727f1b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
VGroup.cxx
connectivity/source/sdbcx/VGroup.cxx
+1
-1
VIndex.cxx
connectivity/source/sdbcx/VIndex.cxx
+1
-1
VKey.cxx
connectivity/source/sdbcx/VKey.cxx
+1
-1
VUser.cxx
connectivity/source/sdbcx/VUser.cxx
+1
-1
No files found.
connectivity/source/sdbcx/VGroup.cxx
Dosyayı görüntüle @
123dd186
...
@@ -108,7 +108,7 @@ Reference< XNameAccess > SAL_CALL OGroup::getUsers( ) throw(RuntimeException, s
...
@@ -108,7 +108,7 @@ Reference< XNameAccess > SAL_CALL OGroup::getUsers( ) throw(RuntimeException, s
// allowed
// allowed
}
}
return
const_cast
<
OGroup
*>
(
this
)
->
m_pUsers
;
return
m_pUsers
;
}
}
...
...
connectivity/source/sdbcx/VIndex.cxx
Dosyayı görüntüle @
123dd186
...
@@ -163,7 +163,7 @@ Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OIndex::getColumn
...
@@ -163,7 +163,7 @@ Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OIndex::getColumn
OSL_FAIL
(
"OIndex::getColumns: caught an exception!"
);
OSL_FAIL
(
"OIndex::getColumns: caught an exception!"
);
}
}
return
const_cast
<
OIndex
*>
(
this
)
->
m_pColumns
;
return
m_pColumns
;
}
}
Reference
<
XPropertySet
>
SAL_CALL
OIndex
::
createDataDescriptor
(
)
throw
(
RuntimeException
,
std
::
exception
)
Reference
<
XPropertySet
>
SAL_CALL
OIndex
::
createDataDescriptor
(
)
throw
(
RuntimeException
,
std
::
exception
)
...
...
connectivity/source/sdbcx/VKey.cxx
Dosyayı görüntüle @
123dd186
...
@@ -171,7 +171,7 @@ Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OKey::getColumns(
...
@@ -171,7 +171,7 @@ Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OKey::getColumns(
// allowed
// allowed
}
}
return
const_cast
<
OKey
*>
(
this
)
->
m_pColumns
;
return
m_pColumns
;
}
}
Reference
<
XPropertySet
>
SAL_CALL
OKey
::
createDataDescriptor
(
)
throw
(
RuntimeException
,
std
::
exception
)
Reference
<
XPropertySet
>
SAL_CALL
OKey
::
createDataDescriptor
(
)
throw
(
RuntimeException
,
std
::
exception
)
...
...
connectivity/source/sdbcx/VUser.cxx
Dosyayı görüntüle @
123dd186
...
@@ -117,7 +117,7 @@ Reference< XNameAccess > SAL_CALL OUser::getGroups( ) throw(RuntimeException, s
...
@@ -117,7 +117,7 @@ Reference< XNameAccess > SAL_CALL OUser::getGroups( ) throw(RuntimeException, s
// allowed
// allowed
}
}
return
const_cast
<
OUser
*>
(
this
)
->
m_pGroups
;
return
m_pGroups
;
}
}
...
...
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