summaryrefslogtreecommitdiff
path: root/gtk/gtkcellrenderertext.h
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@src.gnome.org>2001-10-31 10:27:17 +0000
committerMurray Cumming <murrayc@src.gnome.org>2001-10-31 10:27:17 +0000
commite0094ea92ed13baa36e92396bdef67567d8d6647 (patch)
tree145d8aac18d04eeb6b14607c1430cadcdff4b6c1 /gtk/gtkcellrenderertext.h
parent8ec7b9fcff6d25437eb48eccedfc7eebffac330d (diff)
downloadgtk+-e0094ea92ed13baa36e92396bdef67567d8d6647.tar.gz
gchar* args of GtkCellRendererText and GtkCellRendererToggle signal handlers are noe const gchar*.
Diffstat (limited to 'gtk/gtkcellrenderertext.h')
-rw-r--r--gtk/gtkcellrenderertext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcellrenderertext.h b/gtk/gtkcellrenderertext.h
index dfc4f8b3db..9d1338f872 100644
--- a/gtk/gtkcellrenderertext.h
+++ b/gtk/gtkcellrenderertext.h
@@ -81,8 +81,8 @@ struct _GtkCellRendererTextClass
GtkCellRendererClass parent_class;
void (* edited) (GtkCellRendererText *cell_renderer_text,
- gchar *path,
- gchar *new_text);
+ const gchar *path,
+ const gchar *new_text);
};
GtkType gtk_cell_renderer_text_get_type (void);