summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllison Ryan Lortie <desrt@desrt.ca>2015-12-16 14:29:50 +0000
committerAllison Ryan Lortie <desrt@desrt.ca>2015-12-16 11:30:51 -0500
commit7beac020f79da20e25966d6a19bc47f2e6542e92 (patch)
tree5feb4c2a58dc42f3e9df33a54595920d1c5aedc6
parent1fb178fddf7adb041806078b20b00c89cb8a4cd1 (diff)
downloaddconf-7beac020f79da20e25966d6a19bc47f2e6542e92.tar.gz
common: rename dconf-error.h to dconf-enums.h
This will soon contain an extra enum. https://bugzilla.gnome.org/show_bug.cgi?id=759128
-rw-r--r--client/dconf.h2
-rw-r--r--common/Makefile.am2
-rw-r--r--common/dconf-enums.h (renamed from common/dconf-error.h)0
-rw-r--r--common/dconf-error.c2
-rw-r--r--common/dconf-paths.c2
-rw-r--r--engine/dconf-engine.c2
-rw-r--r--tests/engine.c2
7 files changed, 6 insertions, 6 deletions
diff --git a/client/dconf.h b/client/dconf.h
index e75cb6d..77bda7c 100644
--- a/client/dconf.h
+++ b/client/dconf.h
@@ -20,7 +20,7 @@
#ifndef __dconf_h__
#define __dconf_h__
-#include <common/dconf-error.h>
+#include <common/dconf-enums.h>
#include <common/dconf-paths.h>
#include <common/dconf-changeset.h>
#include <client/dconf-client.h>
diff --git a/common/Makefile.am b/common/Makefile.am
index 3435c0f..57f0f32 100644
--- a/common/Makefile.am
+++ b/common/Makefile.am
@@ -3,7 +3,7 @@ include $(top_srcdir)/Makefile.gtester
dconfcommonincludedir = $(dconfincludedir)/common
dconfcommoninclude_HEADERS = \
dconf-changeset.h \
- dconf-error.h \
+ dconf-enums.h \
dconf-paths.h
noinst_LIBRARIES = libdconf-common.a libdconf-common-shared.a libdconf-common-hidden.a
diff --git a/common/dconf-error.h b/common/dconf-enums.h
index 9f08211..9f08211 100644
--- a/common/dconf-error.h
+++ b/common/dconf-enums.h
diff --git a/common/dconf-error.c b/common/dconf-error.c
index 19d1dc6..6339397 100644
--- a/common/dconf-error.c
+++ b/common/dconf-error.c
@@ -19,7 +19,7 @@
#include "config.h"
-#include "dconf-error.h"
+#include "dconf-enums.h"
/**
* SECTION:error
diff --git a/common/dconf-paths.c b/common/dconf-paths.c
index 7e4574d..047429d 100644
--- a/common/dconf-paths.c
+++ b/common/dconf-paths.c
@@ -22,7 +22,7 @@
#include "dconf-paths.h"
-#include "dconf-error.h"
+#include "dconf-enums.h"
/**
* SECTION:paths
diff --git a/engine/dconf-engine.c b/engine/dconf-engine.c
index e51ec57..1b2770e 100644
--- a/engine/dconf-engine.c
+++ b/engine/dconf-engine.c
@@ -22,7 +22,7 @@
#define _XOPEN_SOURCE 600
#include "dconf-engine.h"
-#include "../common/dconf-error.h"
+#include "../common/dconf-enums.h"
#include "../common/dconf-paths.h"
#include "../gvdb/gvdb-reader.h"
#include <string.h>
diff --git a/tests/engine.c b/tests/engine.c
index 09e89c2..60b4d5e 100644
--- a/tests/engine.c
+++ b/tests/engine.c
@@ -4,7 +4,7 @@
#include "../engine/dconf-engine.h"
#include "../engine/dconf-engine-profile.h"
-#include "../common/dconf-error.h"
+#include "../common/dconf-enums.h"
#include "dconf-mock.h"
#include <glib/gstdio.h>