diff options
author | Adam NAILI | 2017-12-12 13:08:47 +0100 |
---|---|---|
committer | Adam NAILI | 2017-12-12 13:08:47 +0100 |
commit | 00a6e1d29ad8dae2d769810b9af65c3934788487 (patch) | |
tree | a6c951460b2187f17873ae6187852dbf3beeafbf /include | |
parent | bd3864dda0ca20a2d234bda525e6cd7c21d4f729 (diff) | |
download | morpher-00a6e1d29ad8dae2d769810b9af65c3934788487.tar.gz |
Reworking on the signature of PrintMethod
Diffstat (limited to 'include')
-rw-r--r-- | include/gui/component.h | 2 |
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 | */ |
24 | typedef void (*PrintMethod)(void); | 24 | typedef void (*PrintMethod)(void*); |
25 | 25 | ||
26 | /** | 26 | /** |
27 | * Struct: Component | 27 | * Struct: Component |