2006-03-07 Johan Bilien <johan.bilien@nokia.com>
authorJohan Bilien <johan.bilien@nokia.com>
Wed, 8 Mar 2006 15:41:46 +0000 (15:41 +0000)
committerJohan Bilien <johan.bilien@nokia.com>
Wed, 8 Mar 2006 15:41:46 +0000 (15:41 +0000)
* hildon-widgets/hildon-window.c: propagate key-press event to the
  parent class (Closes N#23400)
* configure.ac: 0.12.3

ChangeLog
debian/changelog
debian/control
hildon-widgets/hildon-window.c

index be066c8..3464849 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-07  Johan Bilien  <johan.bilien@nokia.com>
+
+       * hildon-widgets/hildon-window.c: propagate key-press event to the
+         parent class (Closes N#23400)
+       * configure.ac: 0.12.3
+
 2006-03-06  Johan Bilien  <johan.bilien@nokia.com>
 
        * hildon-wizard-dialog.[ch]: Add page_change signal. Patch courtesy
index de8fb83..b28e782 100644 (file)
@@ -1,3 +1,11 @@
+hildon-libs (0.12.3-1) unstable; urgency=low
+
+  * hildon-widgets/hildon-window.c: propagate key-press event to the
+    parent class (Closes N#23400)
+  * Replaces hildon-lgpl0 < 0.12
+
+ -- Johan Bilien <johan.bilien@nokia.com>  Wed,  8 Mar 2006 17:32:18 +0200
+
 hildon-libs (0.12.2-1) unstable; urgency=low
 
   * ChangeLog-hildon-lgpl: copied from old hildon-lgpl/ChangeLog for
index 35a1584..0264775 100644 (file)
@@ -14,6 +14,8 @@ Description: Hildon libraries development files
 Package: hildon-libs0
 Section: libs
 Architecture: any
+Conflicts: hildon-lgpl0 (<< 0.12)
+Replaces: hildon-lgpl0 (<< 0.12)
 Depends: ${shlibs:Depends}, ${misc:Depends}, osso-sounds-ui, libosso-gnomevfs2-0, osso-esd, libgconf2-6, hildon-libs-l10n-3.0-engb | hildon-libs-l10n-3.0-english
 Description: Hildon libraries
 
index 9960087..aa6a01c 100644 (file)
@@ -1016,7 +1016,7 @@ hildon_window_key_press_event (GtkWidget *widget, GdkEventKey *event)
             break;
     }
 
-    return FALSE;
+    return GTK_WIDGET_CLASS (parent_class)->key_press_event (widget, event);
 
 }