Remove the --enable-debug configure option.
[pspp] / src / ui / gui / psppire-dict.h
index 4d78807cba2d97464d9b9a052b8df5904207587d..2ea7e0c1a626f7ab9306da230dc318b942c5d67a 100644 (file)
@@ -59,7 +59,9 @@ enum {DICT_TVM_COL_NAME=0,
 struct _PsppireDict
 {
   GObject             parent;
-  struct dictionary *dict;
+  struct dictionary   *dict;
+
+  gboolean dispose_has_run;
 
   gboolean disable_insert_signal;
   /* For GtkTreeModelIface */
@@ -119,10 +121,6 @@ void psppire_dict_replace_dictionary (PsppireDict *, struct dictionary *);
 
 struct variable * psppire_dict_get_weight_variable (const PsppireDict *);
 
-#if DEBUGGING
-void psppire_dict_dump (const PsppireDict *);
-#endif
-
 const gchar *psppire_dict_encoding (const PsppireDict *);
 
 G_END_DECLS