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
e56bec5c
Kaydet (Commit)
e56bec5c
authored
Haz 08, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: I27516cc532e46b6e43a2f2f292246f1414e9f9b3
üst
f61f7609
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
20 additions
and
20 deletions
+20
-20
rscclobj.hxx
rsc/inc/rscclobj.hxx
+2
-2
rsctools.hxx
rsc/inc/rsctools.hxx
+1
-1
rsckey.cxx
rsc/source/parser/rsckey.cxx
+2
-2
start.cxx
rsc/source/prj/start.cxx
+2
-2
rscclass.cxx
rsc/source/res/rscclass.cxx
+2
-2
rscconst.cxx
rsc/source/res/rscconst.cxx
+2
-2
rsctools.cxx
rsc/source/tools/rsctools.cxx
+3
-3
rsctree.cxx
rsc/source/tools/rsctree.cxx
+6
-6
No files found.
rsc/inc/rscclobj.hxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -47,7 +47,7 @@ public:
bool
Insert
(
ObjNode
*
pTN
)
//< insert a new node in the b-tree
{
return
IdNode
::
Insert
(
(
IdNode
*
)
pTN
);
return
IdNode
::
Insert
(
static_cast
<
IdNode
*>
(
pTN
)
);
}
CLASS_DATA
GetRscObj
()
//< get the Object from this Node
...
...
@@ -76,7 +76,7 @@ public:
}
bool
Insert
(
RefNode
*
pTN
)
//< insert a new node in the b-tree
{
return
IdNode
::
Insert
(
(
IdNode
*
)
pTN
);
return
IdNode
::
Insert
(
static_cast
<
IdNode
*>
(
pTN
)
);
}
bool
PutObjNode
(
ObjNode
*
pPutObject
);
...
...
rsc/inc/rsctools.hxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -74,7 +74,7 @@ public:
~
RscPtrPtr
();
void
Reset
();
sal_uInt32
Append
(
void
*
);
sal_uInt32
Append
(
char
*
pStr
)
{
return
Append
(
(
void
*
)
pStr
);
}
sal_uInt32
Append
(
char
*
pStr
)
{
return
Append
(
static_cast
<
void
*>
(
pStr
)
);
}
sal_uInt32
GetCount
()
{
return
nCount
;
}
void
*
GetEntry
(
sal_uInt32
nEle
);
void
**
GetBlock
()
{
return
pMem
;
}
...
...
rsc/source/parser/rsckey.cxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -64,7 +64,7 @@ void RscNameTable::SetSort( bool bSorted )
if
(
bSort
&&
pTable
)
{
// Schluesselwort Feld sortieren
qsort
(
(
void
*
)
pTable
,
nEntries
,
qsort
(
static_cast
<
void
*>
(
pTable
)
,
nEntries
,
sizeof
(
KEY_STRUCT
),
KeyCompare
);
}
};
...
...
@@ -73,7 +73,7 @@ Atom RscNameTable::Put( Atom nName, sal_uInt32 nTyp, sal_IntPtr nValue )
{
if
(
pTable
)
pTable
=
static_cast
<
KEY_STRUCT
*>
(
rtl_reallocateMemory
(
(
void
*
)
pTable
,
rtl_reallocateMemory
(
static_cast
<
void
*>
(
pTable
)
,
((
nEntries
+
1
)
*
sizeof
(
KEY_STRUCT
))
));
else
pTable
=
static_cast
<
KEY_STRUCT
*>
(
...
...
rsc/source/prj/start.cxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -96,7 +96,7 @@ static bool CallPrePro( const OString& rInput,
aNewCmdL
.
Append
(
rsc_strdup
(
rInput
.
getStr
()
)
);
aNewCmdL
.
Append
(
rsc_strdup
(
rOutput
.
getStr
()
)
);
aNewCmdL
.
Append
(
(
void
*
)
0
);
aNewCmdL
.
Append
(
static_cast
<
void
*>
(
nullptr
)
);
if
(
bVerbose
)
{
...
...
@@ -115,7 +115,7 @@ static bool CallPrePro( const OString& rInput,
OStringBuffer
aTmpStr
;
aTmpStr
.
append
(
'@'
).
append
(
aRspFileName
);
aRespCmdL
.
Append
(
rsc_strdup
(
aTmpStr
.
getStr
()
)
);
aRespCmdL
.
Append
(
(
void
*
)
0
);
aRespCmdL
.
Append
(
static_cast
<
void
*>
(
nullptr
)
);
pCmdL
=
&
aRespCmdL
;
for
(
i
=
0
;
i
<
(
int
)(
aNewCmdL
.
GetCount
()
-
1
);
i
++
)
...
...
rsc/source/res/rscclass.cxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -59,7 +59,7 @@ void RscClass::Pre_dtor()
RscClass
::~
RscClass
()
{
if
(
pVarTypeList
)
rtl_freeMemory
(
(
void
*
)
pVarTypeList
);
rtl_freeMemory
(
static_cast
<
void
*>
(
pVarTypeList
)
);
}
RSCCLASS_TYPE
RscClass
::
GetClassType
()
const
...
...
@@ -234,7 +234,7 @@ ERRTYPE RscClass::SetVariable( Atom nVarName,
{
if
(
pVarTypeList
)
{
pVarTypeList
=
static_cast
<
VARTYPE_STRUCT
*>
(
rtl_reallocateMemory
(
(
void
*
)
pVarTypeList
,
pVarTypeList
=
static_cast
<
VARTYPE_STRUCT
*>
(
rtl_reallocateMemory
(
static_cast
<
void
*>
(
pVarTypeList
)
,
((
nEntries
+
1
)
*
sizeof
(
VARTYPE_STRUCT
))
));
}
else
...
...
rsc/source/res/rscconst.cxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -36,7 +36,7 @@ RscConst::RscConst( Atom nId, sal_uInt32 nTypeId )
RscConst
::~
RscConst
()
{
if
(
pVarArray
)
rtl_freeMemory
(
(
void
*
)
pVarArray
);
rtl_freeMemory
(
static_cast
<
void
*>
(
pVarArray
)
);
}
RSCCLASS_TYPE
RscConst
::
GetClassType
()
const
...
...
@@ -47,7 +47,7 @@ RSCCLASS_TYPE RscConst::GetClassType() const
ERRTYPE
RscConst
::
SetConstant
(
Atom
nVarName
,
sal_Int32
lValue
)
{
if
(
pVarArray
)
pVarArray
=
static_cast
<
VarEle
*>
(
rtl_reallocateMemory
(
(
void
*
)
pVarArray
,
pVarArray
=
static_cast
<
VarEle
*>
(
rtl_reallocateMemory
(
static_cast
<
void
*>
(
pVarArray
)
,
((
nEntries
+
1
)
*
sizeof
(
VarEle
))
));
else
pVarArray
=
static_cast
<
VarEle
*>
(
rtl_allocateMemory
(
((
nEntries
+
1
)
*
sizeof
(
VarEle
))
));
...
...
rsc/source/tools/rsctools.cxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -187,7 +187,7 @@ char * ResponseFile( RscPtrPtr * ppCmd, char ** ppArgv, sal_uInt32 nArgc )
else
ppCmd
->
Append
(
rsc_strdup
(
*
(
ppArgv
+
i
)
)
);
}
ppCmd
->
Append
(
(
void
*
)
0
);
ppCmd
->
Append
(
static_cast
<
void
*>
(
nullptr
)
);
return
NULL
;
}
...
...
@@ -214,7 +214,7 @@ void RscPtrPtr :: Reset()
if
(
pMem
[
i
]
)
rtl_freeMemory
(
pMem
[
i
]
);
}
rtl_freeMemory
(
(
void
*
)
pMem
);
rtl_freeMemory
(
static_cast
<
void
*>
(
pMem
)
);
};
nCount
=
0
;
pMem
=
NULL
;
...
...
@@ -225,7 +225,7 @@ sal_uInt32 RscPtrPtr :: Append( void * pBuffer )
if
(
!
pMem
)
pMem
=
static_cast
<
void
**>
(
rtl_allocateMemory
(
(
nCount
+
1
)
*
sizeof
(
void
*
)
));
else
pMem
=
static_cast
<
void
**>
(
rtl_reallocateMemory
(
(
void
*
)
pMem
,
pMem
=
static_cast
<
void
**>
(
rtl_reallocateMemory
(
static_cast
<
void
*>
(
pMem
)
,
((
nCount
+
1
)
*
sizeof
(
void
*
)
)
));
pMem
[
nCount
]
=
pBuffer
;
...
...
rsc/source/tools/rsctree.cxx
Dosyayı görüntüle @
e56bec5c
...
...
@@ -69,15 +69,15 @@ BiNode * BiNode::ChangeDLListBTree( BiNode * pList )
}
else
{
pList
=
(
BiNode
*
)
0
;
pList
=
nullptr
;
}
if
(
NULL
!=
(
pTmp
=
pMiddle
->
Left
())
)
// rechten Zeiger auf Null
pTmp
->
pRight
=
(
BiNode
*
)
0
;
pTmp
->
pRight
=
nullptr
;
// linken Zeiger auf Null
BiNode
*
pRightNode
=
pMiddle
->
Right
();
if
(
pRightNode
)
pRightNode
->
pLeft
=
(
BiNode
*
)
0
;
pRightNode
->
pLeft
=
nullptr
;
pMiddle
->
pLeft
=
ChangeDLListBTree
(
pList
);
pMiddle
->
pRight
=
ChangeDLListBTree
(
pRightNode
);
...
...
@@ -198,7 +198,7 @@ NameNode* NameNode::SearchParent( const NameNode * pSearch ) const
return
Right
()
->
SearchParent
(
pSearch
);
}
}
return
(
NameNode
*
)
NULL
;
return
nullptr
;
}
// search for a node.
...
...
@@ -327,7 +327,7 @@ void NameNode::SubOrderTree( NameNode * pOrderNode )
IdNode
*
IdNode
::
Search
(
sal_uInt32
nTypeName
)
const
{
return
static_cast
<
IdNode
*>
(
NameNode
::
Search
(
(
const
void
*
)
&
nTypeName
));
return
static_cast
<
IdNode
*>
(
NameNode
::
Search
(
static_cast
<
const
void
*>
(
&
nTypeName
)
));
}
COMPARE
IdNode
::
Compare
(
const
NameNode
*
pSearch
)
const
...
...
@@ -358,7 +358,7 @@ sal_uInt32 IdNode::GetId() const
StringNode
*
StringNode
::
Search
(
const
char
*
pSearch
)
const
{
return
static_cast
<
StringNode
*>
(
NameNode
::
Search
(
(
const
void
*
)
pSearch
));
return
static_cast
<
StringNode
*>
(
NameNode
::
Search
(
static_cast
<
const
void
*>
(
pSearch
)
));
}
COMPARE
StringNode
::
Compare
(
const
NameNode
*
pSearch
)
const
...
...
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