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
c75a5746
Kaydet (Commit)
c75a5746
authored
Mar 28, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up C-style casts from pointers to void
Change-Id: I0605d23708895b9e374f141887759266beb542e7
üst
73e2c6ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
funcpage.cxx
formula/source/ui/dlg/funcpage.cxx
+1
-1
structpg.cxx
formula/source/ui/dlg/structpg.cxx
+2
-2
No files found.
formula/source/ui/dlg/funcpage.cxx
Dosyayı görüntüle @
c75a5746
...
@@ -220,7 +220,7 @@ OUString FuncPage::GetSelFunctionName() const
...
@@ -220,7 +220,7 @@ OUString FuncPage::GetSelFunctionName() const
const
IFunctionDescription
*
FuncPage
::
GetFuncDesc
(
sal_Int32
nPos
)
const
const
IFunctionDescription
*
FuncPage
::
GetFuncDesc
(
sal_Int32
nPos
)
const
{
{
// not pretty, but hopefully rare
// not pretty, but hopefully rare
return
(
const
IFunctionDescription
*
)
m_pLbFunction
->
GetEntryData
(
nPos
);
return
static_cast
<
const
IFunctionDescription
*>
(
m_pLbFunction
->
GetEntryData
(
nPos
)
);
}
}
void
FuncPage
::
InitLRUList
()
void
FuncPage
::
InitLRUList
()
...
...
formula/source/ui/dlg/structpg.cxx
Dosyayı görüntüle @
c75a5746
...
@@ -149,7 +149,7 @@ IFormulaToken* StructPage::GetFunctionEntry(SvTreeListEntry* pEntry)
...
@@ -149,7 +149,7 @@ IFormulaToken* StructPage::GetFunctionEntry(SvTreeListEntry* pEntry)
{
{
if
(
pEntry
!=
NULL
)
if
(
pEntry
!=
NULL
)
{
{
IFormulaToken
*
pToken
=
(
IFormulaToken
*
)
pEntry
->
GetUserData
(
);
IFormulaToken
*
pToken
=
static_cast
<
IFormulaToken
*>
(
pEntry
->
GetUserData
()
);
if
(
pToken
!=
NULL
)
if
(
pToken
!=
NULL
)
{
{
if
(
!
(
pToken
->
isFunction
()
||
pToken
->
getArgumentCount
()
>
1
)
)
if
(
!
(
pToken
->
isFunction
()
||
pToken
->
getArgumentCount
()
>
1
)
)
...
@@ -174,7 +174,7 @@ IMPL_LINK( StructPage, SelectHdl, SvTreeListBox*, pTlb )
...
@@ -174,7 +174,7 @@ IMPL_LINK( StructPage, SelectHdl, SvTreeListBox*, pTlb )
SvTreeListEntry
*
pCurEntry
=
m_pTlbStruct
->
GetCurEntry
();
SvTreeListEntry
*
pCurEntry
=
m_pTlbStruct
->
GetCurEntry
();
if
(
pCurEntry
!=
NULL
)
if
(
pCurEntry
!=
NULL
)
{
{
pSelectedToken
=
(
IFormulaToken
*
)
pCurEntry
->
GetUserData
(
);
pSelectedToken
=
static_cast
<
IFormulaToken
*>
(
pCurEntry
->
GetUserData
()
);
if
(
pSelectedToken
!=
NULL
)
if
(
pSelectedToken
!=
NULL
)
{
{
if
(
!
(
pSelectedToken
->
isFunction
()
||
pSelectedToken
->
getArgumentCount
()
>
1
)
)
if
(
!
(
pSelectedToken
->
isFunction
()
||
pSelectedToken
->
getArgumentCount
()
>
1
)
)
...
...
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