diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-06-19 21:56:19 +0000 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-06-19 21:56:19 +0000 |
commit | e19badef7983c2d551e611340303e7514ab4245a (patch) | |
tree | d239de6b53d59d5400f045832e9ba6be86ca768d | |
parent | 0af09eb05414b25127aab4e59d1ff1617748eb70 (diff) | |
download | gnome-control-center-control-center-1-0.tar.gz |
Remove const to make things compile on AIX. Remove commas after the lastcontrol-center-1-0
2001-06-20 Kjartan Maraas <kmaraas@gnome.org>
* capplets/wm-properties/wm-properties-capplet.c:
Remove const to make things compile on AIX.
* capplets/background-capplet/render-background.h: Remove
commas after the last enum entry.
* capplets/background-capplet/property-background.c: Include
<math.h> and remove trailing comma in enum.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | capplets/wm-properties/wm-properties-capplet.c | 2 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,12 @@ +2001-06-20 Kjartan Maraas <kmaraas@gnome.org> + + * capplets/wm-properties/wm-properties-capplet.c: + Remove const to make things compile on AIX. + * capplets/background-capplet/render-background.h: Remove + commas after the last enum entry. + * capplets/background-capplet/property-background.c: Include + <math.h> and remove trailing comma in enum. + 2001-05-31 Marius Andreiana <mandreiana@yahoo.com> * capplets/screensaver-properties/callbacks.c, diff --git a/capplets/wm-properties/wm-properties-capplet.c b/capplets/wm-properties/wm-properties-capplet.c index ad76cd328..67ede5cf2 100644 --- a/capplets/wm-properties/wm-properties-capplet.c +++ b/capplets/wm-properties/wm-properties-capplet.c @@ -591,7 +591,7 @@ restart (gboolean force) 1, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0}; - const WindowManager twm_fallback = {NULL, "twm", "twm", 0, 0, 1, 0}; + WindowManager twm_fallback = {NULL, "twm", "twm", 0, 0, 1, 0}; twm_dentry.exec = twm_argv; twm_fallback.dentry = &twm_dentry; |