summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJames Westman <flyingpimonster@flyingpimonster.net>2018-12-08 11:28:59 -0600
committerJames Westman <flyingpimonster@flyingpimonster.net>2018-12-08 11:28:59 -0600
commit77b7a025b731fe4d3301f78de5a54f5335f3f68c (patch)
tree67ce56817a79847848ab594a39df57a462125ab8 /lib
parente366e583018ab1f31f1ff51db5448cb886b0bc45 (diff)
downloadgnome-maps-77b7a025b731fe4d3301f78de5a54f5335f3f68c.tar.gz
lib: Fix MapsContactStore.state not introspectable
This was caused by a bug in the Meson file where a necessary header file was not passed to `gnome.generate_gir`. Fixes #140
Diffstat (limited to 'lib')
-rw-r--r--lib/maps-contact-store.c2
-rw-r--r--lib/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/maps-contact-store.c b/lib/maps-contact-store.c
index 1c9ea340..227fc5f7 100644
--- a/lib/maps-contact-store.c
+++ b/lib/maps-contact-store.c
@@ -84,7 +84,7 @@ maps_contact_store_class_init (MapsContactStoreClass *klass)
/**
* MapsContactStore:state:
*
- * The type of the contact.
+ * The current loading state of the contact store.
*/
pspec = g_param_spec_enum ("state",
"State",
diff --git a/lib/meson.build b/lib/meson.build
index c11fec24..60543648 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -56,7 +56,7 @@ libmaps = shared_library(
gnome.generate_gir(
libmaps,
- sources: sources + [maps_enums[0], headers_private],
+ sources: sources + [maps_enums, headers_private],
nsversion: maps_gir_version,
namespace: maps_gir_name,
identifier_prefix: maps_ns,