summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam NAILI2017-12-12 13:08:47 +0100
committerAdam NAILI2017-12-12 13:08:47 +0100
commit00a6e1d29ad8dae2d769810b9af65c3934788487 (patch)
treea6c951460b2187f17873ae6187852dbf3beeafbf
parentbd3864dda0ca20a2d234bda525e6cd7c21d4f729 (diff)
downloadmorpher-00a6e1d29ad8dae2d769810b9af65c3934788487.tar.gz
Reworking on the signature of PrintMethod
-rw-r--r--include/gui/component.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gui/component.h b/include/gui/component.h
index d61b713..50aee63 100644
--- a/include/gui/component.h
+++ b/include/gui/component.h
@@ -21,7 +21,7 @@ typedef void (*ClickHandler)(int x_pos, int y_pos);
21 * Type: PrintMethod 21 * Type: PrintMethod
22 * Type of functions that will be used to print our component. This must be initialized by the initialization function of the component. 22 * Type of functions that will be used to print our component. This must be initialized by the initialization function of the component.
23 */ 23 */
24typedef void (*PrintMethod)(void); 24typedef void (*PrintMethod)(void*);
25 25
26/** 26/**
27 * Struct: Component 27 * Struct: Component