summaryrefslogtreecommitdiff
path: root/service/dconf-writer.c
diff options
context:
space:
mode:
Diffstat (limited to 'service/dconf-writer.c')
-rw-r--r--service/dconf-writer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/service/dconf-writer.c b/service/dconf-writer.c
index aa0c96e..fc4e130 100644
--- a/service/dconf-writer.c
+++ b/service/dconf-writer.c
@@ -223,14 +223,14 @@ dconf_writer_real_end (DConfWriter *writer)
g_clear_pointer (&writer->priv->uncommited_values, dconf_changeset_unref);
}
-gboolean
+static gboolean
dconf_writer_begin (DConfWriter *writer,
GError **error)
{
return DCONF_WRITER_GET_CLASS (writer)->begin (writer, error);
}
-void
+static void
dconf_writer_change (DConfWriter *writer,
DConfChangeset *changeset,
const gchar *tag)
@@ -238,14 +238,14 @@ dconf_writer_change (DConfWriter *writer,
DCONF_WRITER_GET_CLASS (writer)->change (writer, changeset, tag);
}
-gboolean
+static gboolean
dconf_writer_commit (DConfWriter *writer,
GError **error)
{
return DCONF_WRITER_GET_CLASS (writer)->commit (writer, error);
}
-void
+static void
dconf_writer_end (DConfWriter *writer)
{
return DCONF_WRITER_GET_CLASS (writer)->end (writer);