CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/09/26 19:14:07
Modified files: . : ChangeLog gui : gtk.cpp Log message: * gui/gtk.cpp (gdk_to_gnash_key): GDK_ooblique => GDK_oslash (gtk-2.0 in debian stable doesn't define the former). CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4427&r2=1.4428 http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gtk.cpp?cvsroot=gnash&r1=1.116&r2=1.117 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.4427 retrieving revision 1.4428 diff -u -b -r1.4427 -r1.4428 --- ChangeLog 26 Sep 2007 19:00:45 -0000 1.4427 +++ ChangeLog 26 Sep 2007 19:14:07 -0000 1.4428 @@ -1,5 +1,7 @@ 2007-09-26 Sandro Santilli <[EMAIL PROTECTED]> + * gui/gtk.cpp (gdk_to_gnash_key): GDK_ooblique => GDK_oslash + (gtk-2.0 in debian stable doesn't define the former). * server/: BevelFilter.h, BlurFilter.h, ConvolutionFilter.h, DropShadowFilter.h, GlowFilter.h, GradientBevelFilter.h, GradientGlowFilter.h: include <boost/cstdint.hpp> for XintXX_t. Index: gui/gtk.cpp =================================================================== RCS file: /sources/gnash/gnash/gui/gtk.cpp,v retrieving revision 1.116 retrieving revision 1.117 diff -u -b -r1.116 -r1.117 --- gui/gtk.cpp 26 Sep 2007 10:53:48 -0000 1.116 +++ gui/gtk.cpp 26 Sep 2007 19:14:07 -0000 1.117 @@ -17,7 +17,7 @@ // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // -/* $Id: gtk.cpp,v 1.116 2007/09/26 10:53:48 bwy Exp $ */ +/* $Id: gtk.cpp,v 1.117 2007/09/26 19:14:07 strk Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -1407,7 +1407,7 @@ c = (gnash::key::code) ((key - GDK_Ntilde) + gnash::key::NTILDE); } else if (key >= GDK_Ugrave && key <= GDK_THORN) { c = (gnash::key::code) ((key - GDK_Ugrave) + gnash::key::UGRAVE); - } else if (key >= GDK_ssharp && key <= GDK_ooblique) { + } else if (key >= GDK_ssharp && key <= GDK_oslash) { c = (gnash::key::code) ((key - GDK_ssharp) + gnash::key::sSHARP); } else if (key >= GDK_ugrave && key <= GDK_ydiaeresis) { c = (gnash::key::code) ((key - GDK_ugrave) + gnash::key::uGRAVE); _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit