diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-11-01 05:38:28 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-11-01 05:38:28 +0800 |
commit | c2031745964bc6d65d61099cf2cacd768930fb39 (patch) | |
tree | ec2395eab207a8358f5e2a011140dd8d836549b1 /lib | |
parent | 464bb25b7c896c097765e23e396ab82c38dc1eb8 (diff) | |
download | gsoc2013-epiphany-c2031745964bc6d65d61099cf2cacd768930fb39.tar.gz gsoc2013-epiphany-c2031745964bc6d65d61099cf2cacd768930fb39.tar.zst gsoc2013-epiphany-c2031745964bc6d65d61099cf2cacd768930fb39.zip |
Constification.
2005-10-31 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-dbus.c:
* src/bookmarks/ephy-bookmarks-editor.c:
(ephy_bookmarks_editor_construct):
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults):
Constification.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-dbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-dbus.c b/lib/ephy-dbus.c index 630767273..50bf5fb25 100644 --- a/lib/ephy-dbus.c +++ b/lib/ephy-dbus.c @@ -46,8 +46,8 @@ static guint signals[LAST_SIGNAL] = { 0 }; static GObjectClass *parent_class = NULL; /* Epiphany's DBUS identification */ -static const char* epiphany_dbus_service = "org.gnome.Epiphany"; -static const char* epiphany_dbus_object_path = "/org/gnome/Epiphany"; +static const char epiphany_dbus_service[] = "org.gnome.Epiphany"; +static const char epiphany_dbus_object_path[] = "/org/gnome/Epiphany"; /* This function is called by DBUS when a message directed at the * Epiphany's object path arrives (provided we're the registered instance!) |