summaryrefslogtreecommitdiff
path: root/src/gplot/gplotfunction.c
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2018-07-12 23:10:08 +0200
committerRuben Undheim <ruben.undheim@gmail.com>2018-07-12 23:10:08 +0200
commite1fffcb07ce0d8b0db9e0b4b5e1e0c1128197af5 (patch)
tree850eead23d896c80df8c02ab0231164a07e8356e /src/gplot/gplotfunction.c
parent1eb59a5d9eedcb2fde4cfcd8f3cf87edf18e71e4 (diff)
New upstream version 0.82
Diffstat (limited to 'src/gplot/gplotfunction.c')
-rw-r--r--src/gplot/gplotfunction.c21
1 files changed, 13 insertions, 8 deletions
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 <rmarkie@fi.uba.ar>
+ * Marc Lorber <lorber.marc@wanadoo.fr>
+ *
+ * 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);
}