Kaydet (Commit) 56dcc7b6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:casttovoid in RTLFUNC

Change-Id: I810278640936e9b3c73f56a37e8c4786fd2790e3
üst 6e7300d1
...@@ -4017,10 +4017,8 @@ sal_Bool SAL_CALL InvocationToAllListenerMapper::hasProperty(const OUString& Nam ...@@ -4017,10 +4017,8 @@ sal_Bool SAL_CALL InvocationToAllListenerMapper::hasProperty(const OUString& Nam
// create Uno-Service // create Uno-Service
// 1. Parameter == Prefix-Name of the macro // 1. Parameter == Prefix-Name of the macro
// 2. Parameter == fully qualified name of the listener // 2. Parameter == fully qualified name of the listener
RTLFUNC(CreateUnoListener) void SbRtl_CreateUnoListener(StarBASIC * pBasic, SbxArray & rPar, bool)
{ {
(void)bWrite;
// We need 2 parameters // We need 2 parameters
if ( rPar.Count() != 3 ) if ( rPar.Count() != 3 )
{ {
......
This diff is collapsed.
...@@ -147,11 +147,8 @@ IMPL_LINK_NOARG( SvRTLInputBox, CancelHdl, Button *, void ) ...@@ -147,11 +147,8 @@ IMPL_LINK_NOARG( SvRTLInputBox, CancelHdl, Button *, void )
// Syntax: String InputBox( Prompt, [Title], [Default] [, nXpos, nYpos ] ) // Syntax: String InputBox( Prompt, [Title], [Default] [, nXpos, nYpos ] )
RTLFUNC(InputBox) void SbRtl_InputBox(StarBASIC *, SbxArray & rPar, bool)
{ {
(void)pBasic;
(void)bWrite;
sal_uInt32 nArgCount = rPar.Count(); sal_uInt32 nArgCount = rPar.Count();
if ( nArgCount < 2 ) if ( nArgCount < 2 )
StarBASIC::Error( ERRCODE_BASIC_BAD_ARGUMENT ); StarBASIC::Error( ERRCODE_BASIC_BAD_ARGUMENT );
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment