diff options
author | Tim Potter <tpot@samba.org> | 2004-12-14 06:23:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:25 -0500 |
commit | b8c47b9b96fe17cd48ae94cd932ad721e3bef2df (patch) | |
tree | 5dce61ab9f8e7b7170a0112ac163735269fd4ea6 /source4/gtk/tools | |
parent | 916170d9dcf13f05bcbc3979f1bc74764bca4444 (diff) | |
download | samba-b8c47b9b96fe17cd48ae94cd932ad721e3bef2df.tar.gz samba-b8c47b9b96fe17cd48ae94cd932ad721e3bef2df.tar.bz2 samba-b8c47b9b96fe17cd48ae94cd932ad721e3bef2df.zip |
r4200: Fix some more warnings.
(This used to be commit 0359bc408f8b3a9f743553f98d0fa1f57021701c)
Diffstat (limited to 'source4/gtk/tools')
-rw-r--r-- | source4/gtk/tools/gregedit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/gtk/tools/gregedit.c b/source4/gtk/tools/gregedit.c index a8684d1134..78114d9149 100644 --- a/source4/gtk/tools/gregedit.c +++ b/source4/gtk/tools/gregedit.c @@ -582,7 +582,7 @@ static GtkWidget* create_mainwin (void) g_signal_connect ((gpointer) open_nt4, "activate", G_CALLBACK (on_open_file_activate), - (gconstpointer)"nt4"); + (gpointer)"nt4"); } if(reg_has_backend("w95")) { @@ -591,7 +591,7 @@ static GtkWidget* create_mainwin (void) g_signal_connect ((gpointer) open_w95, "activate", G_CALLBACK (on_open_file_activate), - (gconstpointer)"w95"); + (gpointer)"w95"); } if(reg_has_backend("gconf")) { @@ -618,7 +618,7 @@ static GtkWidget* create_mainwin (void) g_signal_connect ((gpointer) open_ldb, "activate", G_CALLBACK (on_open_file_activate), - (gconstpointer)"ldb"); + (gpointer)"ldb"); } save = gtk_image_menu_item_new_from_stock ("gtk-save", accel_group); |