compilation fix after wxGTK_CONV changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38678 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-04-11 21:24:52 +00:00
parent bd755fdc3f
commit b8f3257625

View File

@@ -780,8 +780,12 @@ bool wxGnomePrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt )
gs_lgp->gnome_print_job_close( job );
if (m_native_preview)
{
wxString title( _("Print preview") );
gtk_widget_show( gs_lgp->gnome_print_job_preview_new( job, (const guchar*)(const char*)wxGTK_CONV(title) ));
GtkWidget *preview = gs_lgp->gnome_print_job_preview_new
(
job,
wxGTK_CONV_SYS(_("Print preview"))
);
gtk_widget_show(preview);
}
else
{