wmail: fixed warnings about unused parameters.
This commit is contained in:
parent
18d77b13bb
commit
7af1c537ac
|
@ -549,6 +549,7 @@ static void RemoveChecksumFile( void )
|
||||||
|
|
||||||
static void ExitHandler( int sig )
|
static void ExitHandler( int sig )
|
||||||
{
|
{
|
||||||
|
(void) sig;
|
||||||
caughtSig = 1;
|
caughtSig = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1279,6 +1280,9 @@ static void DrawTickerBuildinFont( void )
|
||||||
|
|
||||||
static void ButtonPressed( int button, int state, int x, int y )
|
static void ButtonPressed( int button, int state, int x, int y )
|
||||||
{
|
{
|
||||||
|
(void) button;
|
||||||
|
(void) state;
|
||||||
|
|
||||||
if( x >= 35 && x <= 59 && y >= 47 && y <= 59 ) {
|
if( x >= 35 && x <= 59 && y >= 47 && y <= 59 ) {
|
||||||
buttonPressed = true;
|
buttonPressed = true;
|
||||||
forceRedraw = true;
|
forceRedraw = true;
|
||||||
|
@ -1291,6 +1295,9 @@ static void ButtonPressed( int button, int state, int x, int y )
|
||||||
|
|
||||||
static void ButtonReleased( int button, int state, int x, int y )
|
static void ButtonReleased( int button, int state, int x, int y )
|
||||||
{
|
{
|
||||||
|
(void) button;
|
||||||
|
(void) state;
|
||||||
|
|
||||||
buttonPressed = false;
|
buttonPressed = false;
|
||||||
forceRedraw = true;
|
forceRedraw = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue