]> Pileus Git - grits/blobdiff - src/plugins/test.h
Fix various memory leaks, mostly in plugins
[grits] / src / plugins / test.h
index 3a3797b71c896602b78c337536fec6e5f658e7fe..623454a49aaa5938af65f5b6ccd53bab357d9f11 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
+ * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -35,7 +35,7 @@ struct _GisPluginTest {
 
        /* instance members */
        GisViewer *viewer;
-       GisOpenGL *opengl;
+       gpointer   marker;
 };
 
 struct _GisPluginTestClass {
@@ -45,6 +45,6 @@ struct _GisPluginTestClass {
 GType gis_plugin_test_get_type();
 
 /* Methods */
-GisPluginTest *gis_plugin_test_new(GisViewer *viewer, GisOpenGL *opengl);
+GisPluginTest *gis_plugin_test_new(GisViewer *viewer);
 
 #endif