summaryrefslogtreecommitdiff
path: root/document-portal
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2015-10-21 09:48:53 +0200
committerAlexander Larsson <alexl@redhat.com>2015-10-21 09:48:53 +0200
commit6e1c211a5ce1edffe3ade0d0cc737ac3e5c67196 (patch)
treeec377b09f74362f2263ff74de2538d4db482b0b2 /document-portal
parent477de4c217f798077b23681128761421f89c2ec2 (diff)
downloadxdg-app-6e1c211a5ce1edffe3ade0d0cc737ac3e5c67196.tar.gz
Correct capitalization on dbus interface filename
Diffstat (limited to 'document-portal')
-rw-r--r--document-portal/Makefile.am.inc4
-rw-r--r--document-portal/xdg-document-portal.gresource.xml2
-rw-r--r--document-portal/xdp-main.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/document-portal/Makefile.am.inc b/document-portal/Makefile.am.inc
index c8ad995..cee2198 100644
--- a/document-portal/Makefile.am.inc
+++ b/document-portal/Makefile.am.inc
@@ -5,12 +5,12 @@ libexec_PROGRAMS += \
xdp_dbus_built_sources = document-portal/xdp-dbus.c document-portal/xdp-dbus.h
BUILT_SOURCES += $(xdp_dbus_built_sources)
-$(xdp_dbus_built_sources) : data/org.freedesktop.portal.documents.xml
+$(xdp_dbus_built_sources) : data/org.freedesktop.portal.Documents.xml
$(AM_V_GEN) $(GDBUS_CODEGEN) \
--interface-prefix org.freedesktop.portal. \
--c-namespace XdpDbus \
--generate-c-code $(builddir)/document-portal/xdp-dbus \
- $(srcdir)/data/org.freedesktop.portal.documents.xml \
+ $(srcdir)/data/org.freedesktop.portal.Documents.xml \
$(NULL)
xdp_resource_files = $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/document-portal/xdg-document-portal.gresource.xml)
diff --git a/document-portal/xdg-document-portal.gresource.xml b/document-portal/xdg-document-portal.gresource.xml
index 373d1c3..8f58757 100644
--- a/document-portal/xdg-document-portal.gresource.xml
+++ b/document-portal/xdg-document-portal.gresource.xml
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<gresources>
<gresource prefix='/org/freedesktop/portal/Documents'>
- <file alias="org.freedesktop.portal.documents.xml">data/org.freedesktop.portal.documents.xml</file>
+ <file alias="org.freedesktop.portal.Documents.xml">data/org.freedesktop.portal.Documents.xml</file>
</gresource>
</gresources>
diff --git a/document-portal/xdp-main.c b/document-portal/xdp-main.c
index 65d7e84..4168e22 100644
--- a/document-portal/xdp-main.c
+++ b/document-portal/xdp-main.c
@@ -739,7 +739,7 @@ main (int argc,
do_exit (5);
}
- introspection_bytes = g_resources_lookup_data ("/org/freedesktop/portal/Documents/org.freedesktop.portal.documents.xml", 0, NULL);
+ introspection_bytes = g_resources_lookup_data ("/org/freedesktop/portal/Documents/org.freedesktop.portal.Documents.xml", 0, NULL);
g_assert (introspection_bytes != NULL);
introspection_data = g_dbus_node_info_new_for_xml (g_bytes_get_data (introspection_bytes, NULL), NULL);