[Libreoffice-commits] .: Branch 'libreoffice-3-6' - desktop/unx
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Mon Dec 3 04:54:59 PST 2012
desktop/unx/source/splashx.c | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 7885373f5d3ded68d30c248e60f43cfbd21de3e5
Author: Stephan Bergmann <sbergman at redhat.com>
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 <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
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;
}
More information about the Libreoffice-commits
mailing list