Made it compile

master
Yevgen Muntyan 2006-08-20 03:46:18 -05:00
parent 68e59ab990
commit f358d43bcf
1 changed files with 3 additions and 2 deletions

View File

@ -19,6 +19,7 @@
#include "mooedit/mooeditprefs.h"
#include "mooutils/mooglade.h"
#include "mooutils/moodialogs.h"
#include "mooutils/mooi18n.h"
#include <time.h>
#include <errno.h>
#include <string.h>
@ -1403,7 +1404,7 @@ _moo_edit_print_options_dialog (GtkWidget *parent)
GtkWidget *dialog;
MooGladeXML *xml;
xml = moo_glade_xml_new_from_buf (MOO_PRINT_GLADE_XML, -1, NULL, NULL);
xml = moo_glade_xml_new_from_buf (MOO_PRINT_GLADE_XML, -1, NULL, GETTEXT_PACKAGE, NULL);
g_return_if_fail (xml != NULL);
dialog = moo_glade_xml_get_widget (xml, "dialog");
@ -1427,7 +1428,7 @@ moo_print_operation_create_custom_widget (G_GNUC_UNUSED GtkPrintOperation *opera
GtkWidget *page;
MooGladeXML *xml;
xml = moo_glade_xml_new_from_buf (MOO_PRINT_GLADE_XML, -1, "page", NULL);
xml = moo_glade_xml_new_from_buf (MOO_PRINT_GLADE_XML, -1, "page", GETTEXT_PACKAGE, NULL);
g_return_val_if_fail (xml != NULL, NULL);
page = moo_glade_xml_get_widget (xml, "page");