gnumeric r16884 - in trunk: . tools/win32 tools/win32/patches
- From: jody svn gnome org
- To: svn-commits-list gnome org
- Subject: gnumeric r16884 - in trunk: . tools/win32 tools/win32/patches
- Date: Wed, 15 Oct 2008 07:52:16 +0000 (UTC)
Author: jody
Date: Wed Oct 15 07:52:16 2008
New Revision: 16884
URL: http://svn.gnome.org/viewvc/gnumeric?rev=16884&view=rev
Log:
update win32 build
Added:
trunk/tools/win32/jhbuildrc-debug
- copied, changed from r16883, /trunk/tools/win32/jhbuildrc
trunk/tools/win32/patches/gtk-VK_DECIMAL.patch
Removed:
trunk/tools/win32/jhbuildrc
Modified:
trunk/NEWS
trunk/tools/win32/moduleset
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Wed Oct 15 07:52:16 2008
@@ -42,6 +42,7 @@
* Work around gtk behavior change in IMContext initialization.
* XLS : support anachronistic objs in newer versions. [#546887]
* WIN32 : build fixes
+ * WIN32 : Fix Decimal keypad character. [#555522]
J.H.M. Dassen (Ray):
* Understand and ignore byte-order markers for CSV/stf probing and
Copied: trunk/tools/win32/jhbuildrc-debug (from r16883, /trunk/tools/win32/jhbuildrc)
==============================================================================
Modified: trunk/tools/win32/moduleset
==============================================================================
--- trunk/tools/win32/moduleset (original)
+++ trunk/tools/win32/moduleset Wed Oct 15 07:52:16 2008
@@ -183,18 +183,18 @@
</autotools>
-->
- <tarball id="gtk+" version="2.14.3">
- <source href="http://download.gnome.org/sources/gtk+/2.14/gtk+-2.14.3.tar.bz2" />
- <patches>
- </patches>
+ <autotools id="gtk+" version="2.14.3">
+ <branch repo="gnome.org" module="sources/gtk+/2.14/gtk+-2.14.3.tar.bz2"
+ version="2.14.3">
+ <patch file="&patch_dir;gtk-VK_DECIMAL.patch"/>
+ </branch>
<dependencies>
<dep package="glib"/>
<dep package="cairo"/>
<dep package="atk"/>
<dep package="pango"/>
</dependencies>
- </tarball>
-
+ </autotools>
<!-- glade stack -->
<tarball id="libxml2" version="2.6.32">
@@ -213,7 +213,7 @@
</tarball>
<!-- python stack -->
- <autotools id="pygobject" version="2.14.2">
+ <autotools id="pygobject" version="3.1.2">
<branch repo="gnome.org" module="sources/pygobject/2.14/pygobject-2.14.2.tar.bz2"
version="3.1.2">
<patch file="&patch_dir;pygobject.patch"/>
Added: trunk/tools/win32/patches/gtk-VK_DECIMAL.patch
==============================================================================
--- (empty file)
+++ trunk/tools/win32/patches/gtk-VK_DECIMAL.patch Wed Oct 15 07:52:16 2008
@@ -0,0 +1,19 @@
+2008-10-14 Jody Goldberg <jody gnome org>
+
+ Bug 555522 : KP_Decimal is not locale specific.
+
+ * gdk/win32/gdkkeys-win32.c (handle_special) : Add missing VK_DECIMAL.
+
+Index: gdk/win32/gdkkeys-win32.c
+===================================================================
+--- gdk/win32/gdkkeys-win32.c (revision 21622)
++++ gdk/win32/gdkkeys-win32.c (working copy)
+@@ -151,6 +151,8 @@
+ *ksymp = GDK_KP_Separator; break;
+ case VK_SUBTRACT:
+ *ksymp = GDK_KP_Subtract; break;
++ case VK_DECIMAL:
++ *ksymp = GDK_KP_Decimal; break;
+ case VK_DIVIDE:
+ *ksymp = GDK_KP_Divide; break;
+ case VK_NUMPAD0:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]