]> Pileus Git - grits/blobdiff - examples/plugin/teapot.h
Update copyright and email address
[grits] / examples / plugin / teapot.h
index 1baf35808ad917ad1e48ff885d8eb6aefec8ca4a..a849ef31df53106b79359bf19e5d3d88d5f30b8f 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
@@ -34,10 +34,10 @@ struct _GisPluginTeapot {
        GObject parent_instance;
 
        /* instance members */
+       GisViewer       *viewer;
        GtkToggleButton *button;
        guint            rotate_id;
        float            rotation;
-       GisOpenGL       *opengl;
 };
 
 struct _GisPluginTeapotClass {
@@ -47,6 +47,6 @@ struct _GisPluginTeapotClass {
 GType gis_plugin_teapot_get_type();
 
 /* Methods */
-GisPluginTeapot *gis_plugin_teapot_new(GisWorld *world, GisView *view, GisOpenGL *opengl);
+GisPluginTeapot *gis_plugin_teapot_new(GisViewer *viewer, GisPrefs *prefs);
 
 #endif