]> Pileus Git - ~andy/gtk/blobdiff - gtk/a11y/gtkbooleancellaccessible.h
Change FSF Address
[~andy/gtk] / gtk / a11y / gtkbooleancellaccessible.h
index cd457e8858ccd2ffc5c6b432e4e0f9e0a78856de..1d32b722bf3bcafe12ff472d41524407c352d72b 100644 (file)
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef __GTK_BOOLEAN_CELL_ACCESSIBLE_H__
 #define __GTK_BOOLEAN_CELL_ACCESSIBLE_H__
 
 #include <atk/atk.h>
-#include "gailrenderercell.h"
+#include "gtkrenderercellaccessible.h"
 
 G_BEGIN_DECLS
 
@@ -37,18 +35,17 @@ typedef struct _GtkBooleanCellAccessibleClass GtkBooleanCellAccessibleClass;
 
 struct _GtkBooleanCellAccessible
 {
-  GailRendererCell parent;
+  GtkRendererCellAccessible parent;
   gboolean cell_value;
   gboolean cell_sensitive;
 };
 
 struct _GtkBooleanCellAccessibleClass
 {
-  GailRendererCellClass parent_class;
+  GtkRendererCellAccessibleClass parent_class;
 };
 
 GType      _gtk_boolean_cell_accessible_get_type (void);
-AtkObject *_gtk_boolean_cell_accessible_new      (void);
 
 G_END_DECLS