From e1fffcb07ce0d8b0db9e0b4b5e1e0c1128197af5 Mon Sep 17 00:00:00 2001 From: Ruben Undheim Date: Thu, 12 Jul 2018 23:10:08 +0200 Subject: New upstream version 0.82 --- src/gplot/gplotfunction.c | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'src/gplot/gplotfunction.c') diff --git a/src/gplot/gplotfunction.c b/src/gplot/gplotfunction.c index 576aa85..d88de06 100644 --- a/src/gplot/gplotfunction.c +++ b/src/gplot/gplotfunction.c @@ -3,9 +3,13 @@ * * Authors: * Ricardo Markiewicz + * Marc Lorber + * + * Web page: https://github.com/marc-lorber/oregano * * Copyright (C) 1999-2001 Richard Hult * Copyright (C) 2003,2004 Ricardo Markiewicz + * Copyright (C) 2009-2012 Marc Lorber * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -23,6 +27,7 @@ * Boston, MA 02111-1307, USA. */ +#include "gplot-internal.h" #include "gplotfunction.h" @@ -31,7 +36,7 @@ g_plot_function_base_init (gpointer g_class) { static gboolean initialized = FALSE; if (!initialized) { - /* create interface signals here. */ + // create interface signals here. initialized = TRUE; g_object_interface_install_property (g_class, @@ -50,14 +55,14 @@ g_plot_function_get_type (void) if (type == 0) { static const GTypeInfo info = { sizeof (GPlotFunctionClass), - g_plot_function_base_init, /* base_init */ - NULL, /* base_finalize */ - NULL, /* class_init */ - NULL, /* class_finalize */ - NULL, /* class_data */ + g_plot_function_base_init, // base_init + NULL, // base_finalize + NULL, // class_init + NULL, // class_finalize + NULL, // class_data 0, - 0, /* n_preallocs */ - NULL /* instance_init */ + 0, // n_preallocs + NULL // instance_init }; type = g_type_register_static (G_TYPE_INTERFACE, "GPlotFunction", &info, 0); } -- cgit v1.2.3