summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorРуслан Ижбулатов <lrn1986@gmail.com>2014-08-05 08:20:27 +0000
committerРуслан Ижбулатов <lrn1986@gmail.com>2014-08-05 12:05:12 +0000
commit06e15e28d24f1f4cfbf9de2d3224a076ae3b3b4c (patch)
tree0298eaf4bd8e53d237548685fd3ed096e7767244 /src
parentb77da88890a6f1044fe3213fedba4da782233ba5 (diff)
downloadlibcroco-06e15e28d24f1f4cfbf9de2d3224a076ae3b3b4c.tar.gz
Fix the unused arguments warnings
https://bugzilla.gnome.org/show_bug.cgi?id=710076
Diffstat (limited to 'src')
-rw-r--r--src/cr-om-parser.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cr-om-parser.c b/src/cr-om-parser.c
index ea622e3..a19e06a 100644
--- a/src/cr-om-parser.c
+++ b/src/cr-om-parser.c
@@ -386,6 +386,9 @@ end_page (CRDocHandler * a_this,
ParsingContext **ctxtptr = NULL;
CRStatement *stmt = NULL;
+ (void) a_page;
+ (void) a_pseudo_page;
+
g_return_if_fail (a_this);
ctxtptr = &ctxt;
status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
@@ -449,6 +452,8 @@ end_media (CRDocHandler * a_this, GList * a_media_list)
ParsingContext **ctxtptr = NULL;
CRStatement *stmts = NULL;
+ (void) a_media_list;
+
g_return_if_fail (a_this);
ctxtptr = &ctxt;
status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
@@ -488,6 +493,8 @@ import_style (CRDocHandler * a_this,
ParsingContext **ctxtptr = NULL;
GList *media_list = NULL ;
+ (void) a_uri_default_ns;
+
g_return_if_fail (a_this);
ctxtptr = &ctxt;
status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
@@ -561,6 +568,8 @@ end_selector (CRDocHandler * a_this, CRSelector * a_selector_list)
ParsingContext *ctxt = NULL;
ParsingContext **ctxtptr = NULL;
+ (void) a_selector_list;
+
g_return_if_fail (a_this);
ctxtptr = &ctxt;
status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);