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:
parent
2dce899962
commit
418d60d8df
3 changed files with 9 additions and 4 deletions
|
@ -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>
|
2006-08-21 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* bootstrap-2.10 : tag and bump version to 2.10.0.
|
* bootstrap-2.10 : tag and bump version to 2.10.0.
|
||||||
|
|
|
@ -31,9 +31,9 @@ namespace GtkDemo
|
||||||
{
|
{
|
||||||
print = new PrintOperation ();
|
print = new PrintOperation ();
|
||||||
|
|
||||||
print.BeginPrint += OnBeginPrint;
|
print.BeginPrint += new BeginPrintHandler (OnBeginPrint);
|
||||||
print.DrawPage += OnDrawPage;
|
print.DrawPage += new DrawPageHandler (OnDrawPage);
|
||||||
print.EndPrint += OnEndPrint;
|
print.EndPrint += new EndPrintHandler (OnEndPrint);
|
||||||
|
|
||||||
print.Run (PrintOperationAction.PrintDialog, null);
|
print.Run (PrintOperationAction.PrintDialog, null);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
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
|
TARGETS = GtkDemo.exe
|
||||||
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
||||||
CLEANFILES = $(TARGETS) $(DEBUGS)
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
||||||
|
|
Loading…
Add table
Reference in a new issue