mirror of https://github.com/GNOME/gimp.git
app/core/gimp-gui.h app/core/gimp-utils.h app/core/gimpimage-undo.h
2005-09-27 Sven Neumann <sven@gimp.org> * app/core/gimp-gui.h * app/core/gimp-utils.h * app/core/gimpimage-undo.h * app/text/gimptextlayer.h * app/widgets/gimpeditor.h * app/widgets/gimpmenufactory.h * app/widgets/gimpmessagedialog.h * app/widgets/gimpsessioninfo.h * app/widgets/gimptooldialog.h * app/widgets/gimpviewabledialog.h: use G_GNUC_NULL_TERMINATED where appropriate.
This commit is contained in:
parent
aa94434f52
commit
489aebab5e
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
|||
2005-09-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimp-gui.h
|
||||
* app/core/gimp-utils.h
|
||||
* app/core/gimpimage-undo.h
|
||||
* app/text/gimptextlayer.h
|
||||
* app/widgets/gimpeditor.h
|
||||
* app/widgets/gimpmenufactory.h
|
||||
* app/widgets/gimpmessagedialog.h
|
||||
* app/widgets/gimpsessioninfo.h
|
||||
* app/widgets/gimptooldialog.h
|
||||
* app/widgets/gimpviewabledialog.h: use G_GNUC_NULL_TERMINATED
|
||||
where appropriate.
|
||||
|
||||
2005-09-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimp/gimpprocbrowserdialog.h
|
||||
|
|
|
@ -154,12 +154,12 @@ gboolean gimp_pdb_dialog_new (Gimp *gimp,
|
|||
const gchar *title,
|
||||
const gchar *callback_name,
|
||||
const gchar *object_name,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
gboolean gimp_pdb_dialog_set (Gimp *gimp,
|
||||
GimpContainer *container,
|
||||
const gchar *callback_name,
|
||||
const gchar *object_name,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
gboolean gimp_pdb_dialog_close (Gimp *gimp,
|
||||
GimpContainer *container,
|
||||
const gchar *callback_name);
|
||||
|
|
|
@ -52,7 +52,7 @@ gboolean gimp_boolean_handled_accum (GSignalInvocationHint *ihint,
|
|||
GParameter * gimp_parameters_append (GType object_type,
|
||||
GParameter *params,
|
||||
gint *n_params,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
GParameter * gimp_parameters_append_valist (GType object_type,
|
||||
GParameter *params,
|
||||
gint *n_params,
|
||||
|
|
|
@ -39,7 +39,7 @@ GimpUndo * gimp_image_undo_push (GimpImage *gimage,
|
|||
GimpDirtyMask dirty_mask,
|
||||
GimpUndoPopFunc pop_func,
|
||||
GimpUndoFreeFunc free_func,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
GimpUndo * gimp_image_undo_can_compress (GimpImage *gimage,
|
||||
GType object_type,
|
||||
|
|
|
@ -66,7 +66,7 @@ void gimp_text_layer_discard (GimpTextLayer *layer);
|
|||
void gimp_text_layer_set (GimpTextLayer *layer,
|
||||
const gchar *undo_desc,
|
||||
const gchar *first_property_name,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
gboolean gimp_drawable_is_text_layer (GimpDrawable *drawable);
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ GtkWidget * gimp_editor_add_stock_box (GimpEditor *editor,
|
|||
GtkWidget * gimp_editor_add_action_button (GimpEditor *editor,
|
||||
const gchar *group_name,
|
||||
const gchar *action_name,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
void gimp_editor_set_show_name (GimpEditor *editor,
|
||||
gboolean show);
|
||||
|
|
|
@ -69,7 +69,7 @@ GimpMenuFactory * gimp_menu_factory_new (Gimp *gimp,
|
|||
void gimp_menu_factory_manager_register (GimpMenuFactory *factory,
|
||||
const gchar *identifier,
|
||||
const gchar *first_group,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
GimpUIManager * gimp_menu_factory_manager_new (GimpMenuFactory *factory,
|
||||
const gchar *identifier,
|
||||
|
|
|
@ -56,7 +56,7 @@ GtkWidget * gimp_message_dialog_new (const gchar *title,
|
|||
GtkDialogFlags flags,
|
||||
GimpHelpFunc help_func,
|
||||
const gchar *help_id,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
|
|
@ -83,10 +83,10 @@ GimpSessionInfoAux *
|
|||
void gimp_session_info_aux_free (GimpSessionInfoAux *aux);
|
||||
|
||||
GList * gimp_session_info_aux_new_from_props (GObject *object,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
void gimp_session_info_aux_set_props (GObject *object,
|
||||
GList *aux,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
void gimp_session_info_save (GimpSessionInfo *info,
|
||||
const gchar *factory_name,
|
||||
|
|
|
@ -46,7 +46,7 @@ GType gimp_tool_dialog_get_type (void) G_GNUC_CONST;
|
|||
GtkWidget * gimp_tool_dialog_new (GimpToolInfo *tool_info,
|
||||
GtkWidget *parent,
|
||||
const gchar *desc,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
|
||||
#endif /* __GIMP_TOOL_DIALOG_H__ */
|
||||
|
|
|
@ -63,7 +63,7 @@ GtkWidget * gimp_viewable_dialog_new (GimpViewable *viewable,
|
|||
GtkWidget *parent,
|
||||
GimpHelpFunc help_func,
|
||||
const gchar *help_id,
|
||||
...);
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
void gimp_viewable_dialog_set_viewable (GimpViewableDialog *dialog,
|
||||
GimpViewable *viewable);
|
||||
|
|
Loading…
Reference in New Issue