app: change all action callback signatures to use GimpAction

instead of GtkAction, which is correct now because all our actions
implement the GimpAction interface.

(cherry picked from commit b9d47f2d1f)
This commit is contained in:
Michael Natterer
2019-07-02 16:12:18 +02:00
parent 345acca1c8
commit a1a8f00617
82 changed files with 1831 additions and 1831 deletions

View File

@ -19,10 +19,10 @@
#define __TOOL_PRESETS_COMMANDS_H__
void tool_presets_save_cmd_callback (GtkAction *action,
gpointer data);
void tool_presets_restore_cmd_callback (GtkAction *action,
gpointer data);
void tool_presets_save_cmd_callback (GimpAction *action,
gpointer data);
void tool_presets_restore_cmd_callback (GimpAction *action,
gpointer data);
#endif /* __TOOL_PRESETS_COMMANDS_H__ */