summaryrefslogtreecommitdiffstats
path: root/ganv/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'ganv/module.h')
-rw-r--r--ganv/module.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ganv/module.h b/ganv/module.h
index 375be67..31b76b1 100644
--- a/ganv/module.h
+++ b/ganv/module.h
@@ -33,7 +33,7 @@ G_BEGIN_DECLS
typedef struct _GanvModuleClass GanvModuleClass;
typedef struct _GanvModuleImpl GanvModuleImpl;
-typedef void (*GanvPortFunction)(GanvPort* port, void* data);
+typedef void (*GanvPortFunc)(GanvPort* port, void* data);
struct _GanvModule {
GanvBox box;
@@ -86,9 +86,9 @@ ganv_module_set_direction(GanvModule* module,
* @data: User data to pass to @f.
*/
void
-ganv_module_for_each_port(GanvModule* module,
- GanvPortFunction f,
- void* data);
+ganv_module_for_each_port(GanvModule* module,
+ GanvPortFunc f,
+ void* data);
G_END_DECLS