From 5c4cf2d53855c9cf1bf5f8f033f661c7c4b9f82b Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Thu, 16 Oct 2014 08:17:14 -0500 Subject: Update tags for newer GObject Introsepction Scanner --- src/idomessagedialog.c | 4 ++-- src/idoprogressmenuitem.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/idomessagedialog.c b/src/idomessagedialog.c index f2c2e93..5b73950 100644 --- a/src/idomessagedialog.c +++ b/src/idomessagedialog.c @@ -248,7 +248,7 @@ ido_message_dialog_init (IdoMessageDialog *dialog) * @type: type of message * @buttons: a set of buttons to use * @message_format: printf()-style format string, or %NULL - * @Varargs: arguments for @message_format + * @...: arguments for @message_format * * Creates a new message dialog, which is based upon * GtkMessageDialog so it shares API and functionality @@ -312,7 +312,7 @@ ido_message_dialog_new (GtkWindow *parent, * @type: type of message * @buttons: a set of buttons to use * @message_format: printf()-style format string, or %NULL - * @Varargs: arguments for @message_format. They will be escaped to allow valid XML. + * @...: arguments for @message_format. They will be escaped to allow valid XML. * * Creates a new message dialog, which is based upon * GtkMessageDialog so it shares API and functionality diff --git a/src/idoprogressmenuitem.c b/src/idoprogressmenuitem.c index 9d456b8..4fda202 100644 --- a/src/idoprogressmenuitem.c +++ b/src/idoprogressmenuitem.c @@ -1,4 +1,4 @@ -/** +/* * Copyright 2013 Canonical Ltd. * * Authors: -- cgit v1.2.3 From c3c628dcf3f92c30d167f73daaea6c408123ffa6 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 3 Nov 2014 10:42:36 -0600 Subject: Filter out symbols in the library --- src/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 9b722cb..e18fb70 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -113,11 +113,12 @@ libidoinclude_HEADERS = \ libido_0_1_la_LIBADD = $(GTK_LIBS) $(LIBM) libido_0_1_la_LDFLAGS = \ $(GTK_LT_LDFLAGS) \ - $(COVERAGE_LDFLAGS) + $(COVERAGE_LDFLAGS) \ + -no-undefined \ + -export-symbols-regex "^[^_].*" libido3_0_1_la_LIBADD = $(libido_0_1_la_LIBADD) libido3_0_1_la_LDFLAGS = \ - $(libido_0_1_la_LDFLAGS) \ - $(COVERAGE_LDFLAGS) + $(libido_0_1_la_LDFLAGS) DISTCLEANFILES = \ stamp-idotypebuiltins.h \ -- cgit v1.2.3