changeset 2356:6f4f7882363c

GTK4: Fix compilation after last commit.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 08 Mar 2021 20:13:03 +0000
parents fad0821cb953
children c9b776655725
files gtk4/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gtk4/dw.c	Mon Mar 08 19:53:55 2021 +0000
+++ b/gtk4/dw.c	Mon Mar 08 20:13:03 2021 +0000
@@ -6390,7 +6390,6 @@
  * Parameters:
  *       handle: A handle to a render widget to be redrawn.
  */
-void API dw_render_redraw(HWND handle)
 DW_FUNCTION_DEFINITION(dw_render_redraw, void, HWND handle)
 DW_FUNCTION_ADD_PARAM1(handle)
 DW_FUNCTION_NO_RETURN(dw_render_redraw)
@@ -6398,6 +6397,7 @@
 {
    if(handle && GTK_IS_WIDGET(handle))
       gtk_widget_queue_draw(handle);
+   DW_FUNCTION_RETURN_NOTHING;
 }
 
 /* Returns a GdkRGBA from a DW color */