Change traverse signal to take GtkSheetCell instead of gint,gint
[pspp-builds.git] / lib / gtksheet / gtkextra-sheet.h
index 16d49075070bd7a8fc531d7a375c0218e0f0c1cf..7ea9b1714cc732cbec011571752a3c432d703093 100644 (file)
@@ -23,8 +23,8 @@
  */
 
 
-#ifndef __GTK_EXTRA_SHEET_H__
-#define __GTK_EXTRA_SHEET_H__
+#ifndef GTK_EXTRA_SHEET_H__
+#define GTK_EXTRA_SHEET_H__
 
 
 struct _GtkSheet ;
@@ -42,15 +42,20 @@ struct _GtkSheetButton
   GtkJustification justification;
 };
 
-typedef struct _GtkSheetButton GtkSheetButton;
-
+struct _GtkSheetCell
+{
+  gint row;
+  gint col;
+};
 
+typedef struct _GtkSheetButton GtkSheetButton;
+typedef struct _GtkSheetCell GtkSheetCell;
 
 GtkSheetButton * gtk_sheet_button_new (void);
 
 void gtk_sheet_button_free (GtkSheetButton *button);
 
 
-#endif /* __GTK_EXTRA_SHEET_H__ */
+#endif /* GTK_EXTRA_SHEET_H__ */