app/gui/colormap-editor-commands.[ch] app/gui/debug-commands.[ch]

2004-04-19  Michael Natterer  <mitch@gimp.org>

	* app/gui/colormap-editor-commands.[ch]
	* app/gui/debug-commands.[ch]
	* app/gui/dockable-commands.[ch]
	* app/gui/error-console-commands.[ch]
	* app/gui/file-commands.[ch]
	* app/gui/gradient-editor-commands.[ch]
	* app/gui/help-commands.[ch]
	* app/gui/qmask-commands.[ch]
	* app/gui/tool-options-commands.[ch]: removed "guint action"
	parameter from all callbacks which don't need it.
This commit is contained in:
Michael Natterer
2004-04-19 16:00:54 +00:00
committed by Michael Natterer
parent 273d94fe15
commit a7ffe94b93
41 changed files with 193 additions and 352 deletions

View File

@ -21,26 +21,19 @@
void tool_options_save_to_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
gpointer data);
void tool_options_save_new_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
gpointer data);
void tool_options_restore_from_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
gpointer data);
void tool_options_rename_saved_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
gpointer data);
void tool_options_delete_saved_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
gpointer data);
void tool_options_reset_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
gpointer data);
void tool_options_reset_all_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
gpointer data);
#endif /* __TOOL_OPTIONS_COMMANDS_H__ */