diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-05-07 19:05:53 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-05-07 19:05:53 +0800 |
commit | 9d21a63bf9b13e9b9bde07d9b1963540772dbfd8 (patch) | |
tree | 1ff2ca072c98c0d10c61405704e7f0140ec7f5c5 | |
parent | 61447fb382b2ec83ba1ec4dc893f042efd728d5c (diff) | |
download | gsoc2013-epiphany-9d21a63bf9b13e9b9bde07d9b1963540772dbfd8.tar gsoc2013-epiphany-9d21a63bf9b13e9b9bde07d9b1963540772dbfd8.tar.gz gsoc2013-epiphany-9d21a63bf9b13e9b9bde07d9b1963540772dbfd8.tar.bz2 gsoc2013-epiphany-9d21a63bf9b13e9b9bde07d9b1963540772dbfd8.tar.lz gsoc2013-epiphany-9d21a63bf9b13e9b9bde07d9b1963540772dbfd8.tar.xz gsoc2013-epiphany-9d21a63bf9b13e9b9bde07d9b1963540772dbfd8.tar.zst gsoc2013-epiphany-9d21a63bf9b13e9b9bde07d9b1963540772dbfd8.zip |
Constification.
2005-05-07 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-lockdown.c:
Constification.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-lockdown.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2005-05-07 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-lockdown.c: + + Constification. + 2005-05-06 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EventContext.cpp: diff --git a/src/ephy-lockdown.c b/src/ephy-lockdown.c index 67feea4fd..cf24f14ed 100644 --- a/src/ephy-lockdown.c +++ b/src/ephy-lockdown.c @@ -40,7 +40,7 @@ enum LOCKDOWN_FLAG = 1 << 31 }; -static const char *keys [] = +static const char * const keys [] = { CONF_LOCKDOWN_DISABLE_ARBITRARY_URL, CONF_LOCKDOWN_DISABLE_BOOKMARK_EDITING, |