New file: builder-wrapper.h and builder-wrapper.c
[pspp-builds.git] / src / ui / gui / goto-case-dialog.c
index 7c152c3b96c0cc0767dbf677c7db3dc909e10a59..1b85a53665e7817abfd169d61be3a84ee677b735 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPPIRE - a graphical user interface for PSPP.
-   Copyright (C) 2007  Free Software Foundation
+   Copyright (C) 2007, 2012  Free Software Foundation
 
    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
@@ -17,7 +17,7 @@
 
 #include <config.h>
 #include "goto-case-dialog.h"
-#include "helper.h"
+#include "builder-wrapper.h"
 #include "psppire-dialog.h"
 #include "psppire-data-window.h"
 #include "psppire-data-store.h"
@@ -35,15 +35,14 @@ refresh (const PsppireDataWindow *de, GtkBuilder *xml)
 
   case_count =  psppire_data_store_get_case_count (ds);
 
-  gtk_spin_button_set_range (GTK_SPIN_BUTTON (case_num_entry),
-                            1, case_count);
+  gtk_spin_button_set_range (GTK_SPIN_BUTTON (case_num_entry), 1, case_count);
 }
 
 void
 goto_case_dialog (PsppireDataWindow *de)
 {
   gint response;
-  GtkBuilder *xml = builder_new ("psppire.ui");
+  GtkBuilder *xml = builder_new ("goto-case.ui");
 
   GtkWidget *dialog = get_widget_assert   (xml, "goto-case-dialog");