2003-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* sample/Scribble.cs: patch from Philip Van Hoof <spamfrommailing@freax.org> taht fixes compilation. svn path=/trunk/gtk-sharp/; revision=14066
This commit is contained in:
parent
64e0b4fe10
commit
fa6e709bbb
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
|
||||
|
||||
* sample/Scribble.cs: patch from Philip Van Hoof
|
||||
<spamfrommailing@freax.org> taht fixes compilation.
|
||||
|
||||
2003-04-25 Charles Iliya Krempeaux <charles@reptile.ca>
|
||||
* README : Updated to reflect the name change or the
|
||||
"MonkeyGuide" to the "Mono Hand Book". Updated to
|
||||
|
|
|
@ -116,9 +116,9 @@ namespace GtkSamples {
|
|||
Gdk.Window window = ev.window;
|
||||
|
||||
if (ev.is_hint != 0) {
|
||||
int s;
|
||||
Gdk.ModifierType s;
|
||||
window.GetPointer (out x, out y, out s);
|
||||
state = (Gdk.ModifierType) s;
|
||||
state = s;
|
||||
} else {
|
||||
x = (int) ev.x;
|
||||
y = (int) ev.y;
|
||||
|
|
Loading…
Reference in a new issue