mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Consistently use gchar. (#303455, Benoit Carpentier)
2005-06-21 Matthias Clasen <mclasen@redhat.com> * gtk/gtklabel.h: Consistently use gchar. (#303455, Benoit Carpentier)
This commit is contained in:
parent
0f133f4f4b
commit
15a5ee96af
@ -1,5 +1,8 @@
|
||||
2005-06-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.h: Consistently use gchar. (#303455,
|
||||
Benoit Carpentier)
|
||||
|
||||
* gdk/gdk.symbols:
|
||||
* gdk/gdkwindow.h:
|
||||
* gdk/x11/gdkgeometry-x11.c (gdk_window_move_region): New
|
||||
|
@ -1,5 +1,8 @@
|
||||
2005-06-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.h: Consistently use gchar. (#303455,
|
||||
Benoit Carpentier)
|
||||
|
||||
* gdk/gdk.symbols:
|
||||
* gdk/gdkwindow.h:
|
||||
* gdk/x11/gdkgeometry-x11.c (gdk_window_move_region): New
|
||||
|
@ -1,5 +1,8 @@
|
||||
2005-06-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.h: Consistently use gchar. (#303455,
|
||||
Benoit Carpentier)
|
||||
|
||||
* gdk/gdk.symbols:
|
||||
* gdk/gdkwindow.h:
|
||||
* gdk/x11/gdkgeometry-x11.c (gdk_window_move_region): New
|
||||
|
@ -95,10 +95,10 @@ struct _GtkLabelClass
|
||||
};
|
||||
|
||||
GType gtk_label_get_type (void) G_GNUC_CONST;
|
||||
GtkWidget* gtk_label_new (const char *str);
|
||||
GtkWidget* gtk_label_new_with_mnemonic (const char *str);
|
||||
GtkWidget* gtk_label_new (const gchar *str);
|
||||
GtkWidget* gtk_label_new_with_mnemonic (const gchar *str);
|
||||
void gtk_label_set_text (GtkLabel *label,
|
||||
const char *str);
|
||||
const gchar *str);
|
||||
G_CONST_RETURN gchar* gtk_label_get_text (GtkLabel *label);
|
||||
void gtk_label_set_attributes (GtkLabel *label,
|
||||
PangoAttrList *attrs);
|
||||
@ -166,7 +166,7 @@ gboolean gtk_label_get_single_line_mode (GtkLabel *label);
|
||||
|
||||
#define gtk_label_set gtk_label_set_text
|
||||
void gtk_label_get (GtkLabel *label,
|
||||
char **str);
|
||||
gchar **str);
|
||||
|
||||
/* Convenience function to set the name and pattern by parsing
|
||||
* a string with embedded underscores, and return the appropriate
|
||||
|
Loading…
Reference in New Issue
Block a user