gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog gui/sdl.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/sdl.cpp
Date: Tue, 17 Apr 2007 13:34:23 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/04/17 13:34:23

Modified files:
        .              : ChangeLog 
        gui            : sdl.cpp 

Log message:
                * gui/sdl.cpp (key_event): update call to notify_key_event
                  to provide no modifiers always (bogus, but at least compiles).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2896&r2=1.2897
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/sdl.cpp?cvsroot=gnash&r1=1.52&r2=1.53

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2896
retrieving revision 1.2897
diff -u -b -r1.2896 -r1.2897
--- ChangeLog   17 Apr 2007 12:58:20 -0000      1.2896
+++ ChangeLog   17 Apr 2007 13:34:23 -0000      1.2897
@@ -1,5 +1,7 @@
 2007-04-17 Sandro Santilli <address@hidden>
 
+       * gui/sdl.cpp (key_event): update call to notify_key_event
+         to provide no modifiers always (bogus, but at least compiles).
        * testsuite/actionscript.all/XML.as: add test
          showing that removeNode doesn't recurse to
          childrens.

Index: gui/sdl.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/sdl.cpp,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -b -r1.52 -r1.53
--- gui/sdl.cpp 2 Apr 2007 15:54:08 -0000       1.52
+++ gui/sdl.cpp 17 Apr 2007 13:34:23 -0000      1.53
@@ -17,7 +17,7 @@
 // 
 //
 
-/* $Id: sdl.cpp,v 1.52 2007/04/02 15:54:08 strk Exp $ */
+/* $Id: sdl.cpp,v 1.53 2007/04/17 13:34:23 strk Exp $ */
 
 // XXXbjacques: Screw up the indentation in this file, and you're dead. And by
 //              screw up, I mean not adhering the indentation used throughout
@@ -311,7 +311,9 @@
     }
     
     if (c != gnash::key::INVALID) {
-        notify_key_event(c, down);
+       // 0 should be any modifier instead..
+       // see Gui::notify_key_event in gui.h
+        notify_key_event(c, 0, down);
     }
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]