mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2116 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
cb02a6e5c7
commit
642a19983e
@ -136,8 +136,8 @@ gnc_ui_paper_dialog_new_modal() {
|
||||
gtk_main();
|
||||
|
||||
if(GPOINTER_TO_INT(gtk_object_get_data(GTK_OBJECT(dialog), "quit-cause"))) {
|
||||
newpaper = strdup(gnome_paper_selector_get_name
|
||||
(GNOME_PAPER_SELECTOR(papersel)));
|
||||
newpaper = g_strdup(gnome_paper_selector_get_name
|
||||
(GNOME_PAPER_SELECTOR(papersel)));
|
||||
}
|
||||
gtk_widget_destroy(dialog);
|
||||
|
||||
@ -257,8 +257,8 @@ void
|
||||
gnc_print_session_destroy(PrintSession * ps) {
|
||||
gtk_object_unref(GTK_OBJECT(ps->meta));
|
||||
gtk_object_unref(GTK_OBJECT(ps->default_font));
|
||||
g_free(ps->paper);
|
||||
|
||||
g_free(ps->paper);
|
||||
g_free(ps);
|
||||
}
|
||||
|
||||
@ -317,7 +317,8 @@ void gnc_ui_print_dialog_select_printer_cb(GtkWidget * widget,
|
||||
void gnc_ui_print_dialog_preview_cb(GtkWidget * widget, gpointer user_data) {}
|
||||
void gnc_ui_print_dialog_ok_cb(GtkWidget * widget, gpointer user_data) {}
|
||||
void gnc_ui_print_dialog_cancel_cb(GtkWidget * widget, gpointer user_data) {}
|
||||
|
||||
void gnc_ui_paper_dialog_cancel_cb(GtkWidget * widg, gpointer user_data) { }
|
||||
void gnc_ui_paper_dialog_ok_cb(GtkWidget * widg, gpointer user_data) {}
|
||||
|
||||
/* printsession stuff */
|
||||
PrintSession * gnc_print_session_create() { return NULL; }
|
||||
|
Loading…
Reference in New Issue
Block a user