summaryrefslogtreecommitdiff
path: root/egg/egg-dn.h
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2012-07-16 11:26:18 +0200
committerStef Walter <stefw@gnome.org>2012-07-16 11:30:34 +0200
commit9d5c86537af8940d26a573da82cafb69640438b2 (patch)
tree5eddf5d957848e151b0b1aec9d835926730a8433 /egg/egg-dn.h
parentd31a26df7ce8d9c084b9c66fe00458683dde9864 (diff)
downloadgnome-keyring-9d5c86537af8940d26a573da82cafb69640438b2.tar.gz
Convert from EggBytes to GBytes
* We were using EggBytes while GBytes was not yet in a stable glib release
Diffstat (limited to 'egg/egg-dn.h')
-rw-r--r--egg/egg-dn.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/egg/egg-dn.h b/egg/egg-dn.h
index 08251eca..a75e73dd 100644
--- a/egg/egg-dn.h
+++ b/egg/egg-dn.h
@@ -26,8 +26,6 @@
#include <glib.h>
-#include "egg/egg-bytes.h"
-
gchar* egg_dn_read (GNode *node);
gchar* egg_dn_read_part (GNode *node,
@@ -35,7 +33,7 @@ gchar* egg_dn_read_part (GNode *node,
typedef void (*EggDnCallback) (guint index,
GQuark oid,
- EggBytes *value,
+ GBytes *value,
gpointer user_data);
gboolean egg_dn_parse (GNode *node,
@@ -43,7 +41,7 @@ gboolean egg_dn_parse (GNode *node,
gpointer user_data);
gchar* egg_dn_print_value (GQuark oid,
- EggBytes *value);
+ GBytes *value);
void egg_dn_add_string_part (GNode *node,
GQuark oid,