2002-10-11 Duncan Mak <duncan@ximian.com>
* TestToolbar.cs: Fix the arguments to Toolbar.InsertStock. svn path=/trunk/gtk-sharp/; revision=8175
This commit is contained in:
parent
3f07a660f5
commit
564a7978c6
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-10-11 Duncan Mak <duncan@ximian.com>
|
||||
|
||||
* TestToolbar.cs: Fix the arguments to Toolbar.InsertStock.
|
||||
|
||||
2002-08-09 Duncan Mak <duncan@ximian.com>
|
||||
|
||||
* TestRange.cs (reformat_value): Do something useful here.
|
||||
|
|
|
@ -25,10 +25,10 @@ namespace WidgetViewer {
|
|||
|
||||
toolbar = new Toolbar ();
|
||||
toolbar.InsertStock (Stock.New, "Stock icon: New", "Toolbar/New",
|
||||
new SignalFunc (set_small_icon), -1);
|
||||
new SignalFunc (set_small_icon), IntPtr.Zero, -1);
|
||||
|
||||
toolbar.InsertStock (Stock.Open, "Stock icon: Open", "Toolbar/Open",
|
||||
new SignalFunc (set_large_icon), -1);
|
||||
new SignalFunc (set_large_icon), IntPtr.Zero, -1);
|
||||
|
||||
toolbar.AppendSpace ();
|
||||
|
||||
|
@ -67,7 +67,7 @@ namespace WidgetViewer {
|
|||
toolbar.AppendSpace ();
|
||||
|
||||
toolbar.InsertStock (Stock.Close, "Stock icon: Close", "Toolbar/Close",
|
||||
new SignalFunc (Close_Button), -1);
|
||||
new SignalFunc (Close_Button), IntPtr.Zero, -1);
|
||||
|
||||
window.Add (toolbar);
|
||||
window.ShowAll ();
|
||||
|
|
Loading…
Reference in a new issue