desktop/unx/source/splashx.c | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 7885373f5d3ded68d30c248e60f43cfbd21de3e5
Author: Stephan Bergmann <[email protected]>
Date: Mon Dec 3 13:33:52 2012 +0100
-Werror=unused-parameter
Change-Id: If1aad98965a90ac6b2e5488f21fe0d84c9b4af47
(cherry picked from commit c2500a004dbb4830202b49d8031e35e66c7c739d)
Reviewed-on: https://gerrit.libreoffice.org/1228
Reviewed-by: Caolán McNamara <[email protected]>
Tested-by: Caolán McNamara <[email protected]>
diff --git a/desktop/unx/source/splashx.c b/desktop/unx/source/splashx.c
index 3d3981d..f65098e 100644
--- a/desktop/unx/source/splashx.c
+++ b/desktop/unx/source/splashx.c
@@ -808,14 +808,17 @@ struct splash
/* Stubs that will never be called in this case */
void splash_draw_progress( struct splash* splash, int progress )
{
+ (void)splash; (void)progress;
}
void splash_destroy(struct splash* splash)
{
+ (void)splash;
}
struct splash* splash_create(rtl_uString* pAppPath, int argc, char** argv)
{
+ (void)pAppPath; (void)argc; (void)argv;
return NULL;
}
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits