2006-12-28 Brad Taylor <brad@getcoded.net>

* sample/GtkDemo/Makefile.am:
	* sample/GtkDemo/DemoPrinting.cs: Fix build on Win32.

svn path=/trunk/gtk-sharp/; revision=70373
This commit is contained in:
Mike Kestner 2007-01-02 17:45:09 +00:00
parent 2dce899962
commit 418d60d8df
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2006-12-28 Brad Taylor <brad@getcoded.net>
* sample/GtkDemo/Makefile.am:
* sample/GtkDemo/DemoPrinting.cs: Fix build on Win32.
2006-08-21 Mike Kestner <mkestner@novell.com>
* bootstrap-2.10 : tag and bump version to 2.10.0.

View File

@ -31,9 +31,9 @@ namespace GtkDemo
{
print = new PrintOperation ();
print.BeginPrint += OnBeginPrint;
print.DrawPage += OnDrawPage;
print.EndPrint += OnEndPrint;
print.BeginPrint += new BeginPrintHandler (OnBeginPrint);
print.DrawPage += new DrawPageHandler (OnDrawPage);
print.EndPrint += new EndPrintHandler (OnEndPrint);
print.Run (PrintOperationAction.PrintDialog, null);
}

View File

@ -1,5 +1,5 @@
assemblies = ../../glib/glib-sharp.dll ../../pango/pango-sharp.dll ../../atk/atk-sharp.dll ../../gdk/gdk-sharp.dll ../../gtk/gtk-sharp.dll
references = $(addprefix /r:, $(assemblies)) -r:Mono.Cairo
references = $(addprefix /r:, $(assemblies)) @MONO_CAIRO_LIBS@
TARGETS = GtkDemo.exe
DEBUGS = $(addsuffix .mdb, $(TARGETS))
CLEANFILES = $(TARGETS) $(DEBUGS)