[maemo-commits] [maemo-commits] r10926 - in projects/haf/trunk/gtkhtml: . debian upstream/patches
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Tue Apr 3 12:13:01 EEST 2007
- Previous message: [maemo-commits] r10925 - projects/haf/hafbuildbot
- Next message: [maemo-commits] r10927 - projects/haf/tags/gtkhtml
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: schulhof Date: 2007-04-03 12:12:59 +0300 (Tue, 03 Apr 2007) New Revision: 10926 Added: projects/haf/trunk/gtkhtml/squeaky Removed: projects/haf/trunk/gtkhtml/debian/patches/ Modified: projects/haf/trunk/gtkhtml/ChangeLog projects/haf/trunk/gtkhtml/debian/changelog projects/haf/trunk/gtkhtml/debian/control projects/haf/trunk/gtkhtml/debian/rules projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_000_memleak_fix.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_010_imcontext_leak_fix.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_020_nullify_focus_object_on_load_empty.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_030_unrealize_fix.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_040_clear_selection.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_050_check_string.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_060_return_press_crash_fix.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_070_empty_content_search_crash.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_080_init_offset_in_engine_focus.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_090_dependency_removal.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_100_dependency_removal_cleaning.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_110_panning.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_120_text_selection.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_130_store_clipboard.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_140_const_patch.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_150_image_magnification.diff projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_160_get_motion_hints.diff Log: * Added patch comments * Removed empty debian/patches * Added --enable-a11y, but with forgiving gail check * Increased GTK+ dependency to 2.10.0 Modified: projects/haf/trunk/gtkhtml/ChangeLog =================================================================== --- projects/haf/trunk/gtkhtml/ChangeLog 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/ChangeLog 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,10 @@ +2007-04-03 Gabriel Schulhof <gabriel.schulhof at nokia.com> + + * Added patch comments + * Removed empty debian/patches + * Added --enable-a11y, but with forgiving gail check + * Increased GTK+ dependency to 2.10.0 + 2007-03-06 Gabriel Schulhof <gabriel.schulhof at nokia.com> * Fixes: NB#52411 Modified: projects/haf/trunk/gtkhtml/debian/changelog =================================================================== --- projects/haf/trunk/gtkhtml/debian/changelog 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/debian/changelog 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,12 @@ +gtkhtml (3.9.1-3osso6) unstable; urgency=low + + * Added patch comments + * Removed empty debian/patches + * Added --enable-a11y, but with forgiving gail check + * Increased GTK+ dependency to 2.10.0 + + -- Gabriel Schulhof <gabriel.schulhof at nokia.com> Tue, 3 Apr 2007 12:08:10 +0300 + gtkhtml (3.9.1-3osso5) unstable; urgency=low * Fixes: NB#52411 Modified: projects/haf/trunk/gtkhtml/debian/control =================================================================== --- projects/haf/trunk/gtkhtml/debian/control 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/debian/control 2007-04-03 09:12:59 UTC (rev 10926) @@ -2,7 +2,7 @@ Section: libs Priority: optional Maintainer: Jakub Pavelek <jakub.pavelek at nokia.com> -Build-Depends: debhelper (>= 4.0.0), libart-2.0-2, libart-2.0-dev, libgtk2.0-dev (>= 2.6.0), libgconf2-dev, intltool +Build-Depends: debhelper (>= 4.0.0), libart-2.0-2, libart-2.0-dev, libgtk2.0-dev (>= 2:2.10), libgconf2-dev, intltool Standards-Version: 3.6.0 Package: gtkhtml-dev Modified: projects/haf/trunk/gtkhtml/debian/rules =================================================================== --- projects/haf/trunk/gtkhtml/debian/rules 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/debian/rules 2007-04-03 09:12:59 UTC (rev 10926) @@ -35,7 +35,7 @@ dh_testdir # Add here commands to configure the package. - cd $(SOURCE_DIR) && CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + cd $(SOURCE_DIR) && CFLAGS="$(CFLAGS)" ./configure --enable-a11y --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info $(SOURCE_DIR)/configure: #inflate upstream and prepare Added: projects/haf/trunk/gtkhtml/squeaky =================================================================== --- projects/haf/trunk/gtkhtml/squeaky 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/squeaky 2007-04-03 09:12:59 UTC (rev 10926) @@ -0,0 +1,4 @@ +#!/bin/sh + +rm -rf \ + gtkhtml* *stamp Property changes on: projects/haf/trunk/gtkhtml/squeaky ___________________________________________________________________ Name: svn:executable + * Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_000_memleak_fix.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_000_memleak_fix.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_000_memleak_fix.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Memory leak fix +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/htmlengine.c gtkhtml-3.13.91.mod0/src/htmlengine.c --- gtkhtml-3.13.91/src/htmlengine.c 2007-02-12 08:57:38.000000000 +0200 +++ gtkhtml-3.13.91.mod0/src/htmlengine.c 2007-02-15 12:41:23.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_010_imcontext_leak_fix.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_010_imcontext_leak_fix.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_010_imcontext_leak_fix.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Free IMContext during destruction +# +# Copyright (C) 2006 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/gtkhtml.c gtkhtml-3.13.91.mod5/src/gtkhtml.c --- gtkhtml-3.13.91/src/gtkhtml.c 2007-02-15 12:59:30.000000000 +0200 +++ gtkhtml-3.13.91.mod5/src/gtkhtml.c 2007-02-15 14:40:31.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_020_nullify_focus_object_on_load_empty.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_020_nullify_focus_object_on_load_empty.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_020_nullify_focus_object_on_load_empty.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Nullify stale pointer +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/htmlengine.c gtkhtml-3.13.91.mod0/src/htmlengine.c --- gtkhtml-3.13.91/src/htmlengine.c 2007-02-20 18:20:56.000000000 +0200 +++ gtkhtml-3.13.91.mod0/src/htmlengine.c 2007-02-20 18:22:08.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_030_unrealize_fix.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_030_unrealize_fix.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_030_unrealize_fix.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,5 +1,10 @@ # During unrealize, we must feed NULL to gtk_im_context_set_client_window so as to # dissociate it from a GdkWindow which is about to be destroyed anyway +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/gtkhtml.c gtkhtml-3.13.91.mod6/src/gtkhtml.c --- gtkhtml-3.13.91/src/gtkhtml.c 2007-02-15 14:40:31.000000000 +0200 +++ gtkhtml-3.13.91.mod6/src/gtkhtml.c 2007-02-15 15:12:46.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_040_clear_selection.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_040_clear_selection.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_040_clear_selection.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,10 @@ +# When loading a new document, we must clear the selection, because the new document +# should have nothing selected +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/htmlengine.c gtkhtml-3.13.91.mod11/src/htmlengine.c --- gtkhtml-3.13.91/src/htmlengine.c 2007-02-15 17:52:01.000000000 +0200 +++ gtkhtml-3.13.91.mod11/src/htmlengine.c 2007-02-16 16:09:21.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_050_check_string.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_050_check_string.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_050_check_string.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Do not leak a string pointer +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/htmlengine.c gtkhtml-3.13.91.mod1/src/htmlengine.c --- gtkhtml-3.13.91/src/htmlengine.c 2007-02-15 12:41:23.000000000 +0200 +++ gtkhtml-3.13.91.mod1/src/htmlengine.c 2007-02-15 12:46:07.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_060_return_press_crash_fix.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_060_return_press_crash_fix.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_060_return_press_crash_fix.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Mark a link as visited before emitting the signal that can lead to its destruction +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/gtkhtml.c gtkhtml-3.13.91.mod4/src/gtkhtml.c --- gtkhtml-3.13.91/src/gtkhtml.c 2007-02-15 15:58:27.000000000 +0200 +++ gtkhtml-3.13.91.mod4/src/gtkhtml.c 2007-02-15 16:09:48.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_070_empty_content_search_crash.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_070_empty_content_search_crash.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_070_empty_content_search_crash.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,10 @@ +# Be a little more paranoid about dereferencing pointers, because they may be NULL in the +# case of an empty document +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/htmlengine-search.c gtkhtml-3.13.91.mod4/src/htmlengine-search.c --- gtkhtml-3.13.91/src/htmlengine-search.c 2007-01-03 17:19:57.000000000 +0200 +++ gtkhtml-3.13.91.mod4/src/htmlengine-search.c 2007-02-15 14:14:16.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_080_init_offset_in_engine_focus.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_080_init_offset_in_engine_focus.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_080_init_offset_in_engine_focus.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Properly initialize the variable named "offset" +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/htmlengine.c gtkhtml-3.13.91.mod6/src/htmlengine.c --- gtkhtml-3.13.91/src/htmlengine.c 2007-02-15 15:54:05.000000000 +0200 +++ gtkhtml-3.13.91.mod6/src/htmlengine.c 2007-02-15 16:18:27.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_090_dependency_removal.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_090_dependency_removal.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_090_dependency_removal.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Remove GNOME dependencies +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/config.h.in gtkhtml-3.13.91.mod7/config.h.in --- gtkhtml-3.13.91/config.h.in 2007-02-12 14:01:17.000000000 +0200 +++ gtkhtml-3.13.91.mod7/config.h.in 2007-02-15 16:34:40.000000000 +0200 @@ -117,7 +123,7 @@ + +dnl libglade only needed on windows? +dnl GTKHTML_MODULES="$GNOME_MODULES $GNOMEPRINT_MODULES $GAIL_MODULES libglade-2.0 >= 2.0.0" -+GTKHTML_MODULES="$GNOME_MODULES $GNOMEPRINT_MODULES $GAIL_MODULES gtk+-2.0 >= 2.6.0 gconf-2.0 libart-2.0 >= 2.3.0" ++GTKHTML_MODULES="$GNOME_MODULES $GNOMEPRINT_MODULES $GAIL_MODULES gtk+-2.0 >= 2.10.0 gconf-2.0 libart-2.0 >= 2.3.0" PKG_CHECK_MODULES(GTKHTML, $GTKHTML_MODULES) AC_SUBST(GTKHTML_CFLAGS) AC_SUBST(GTKHTML_LIBS) Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_100_dependency_removal_cleaning.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_100_dependency_removal_cleaning.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_100_dependency_removal_cleaning.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Set some defaults to off without entirely yanking them +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -Nru gtkhtml-3.13.91/autogen.sh gtkhtml-3.13.91.mod8/autogen.sh --- gtkhtml-3.13.91/autogen.sh 1970-01-01 02:00:00.000000000 +0200 +++ gtkhtml-3.13.91.mod8/autogen.sh 2007-02-16 11:21:27.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_110_panning.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_110_panning.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_110_panning.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Initial panning support +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/gtkhtml.c gtkhtml-3.13.91.mod9/src/gtkhtml.c --- gtkhtml-3.13.91/src/gtkhtml.c 2007-02-15 17:27:50.000000000 +0200 +++ gtkhtml-3.13.91.mod9/src/gtkhtml.c 2007-02-16 15:40:30.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_120_text_selection.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_120_text_selection.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_120_text_selection.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Double-click initiates text selection +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/gtkhtml.c gtkhtml-3.13.91.mod10/src/gtkhtml.c --- gtkhtml-3.13.91/src/gtkhtml.c 2007-02-16 15:40:30.000000000 +0200 +++ gtkhtml-3.13.91.mod10/src/gtkhtml.c 2007-02-16 15:56:22.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_130_store_clipboard.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_130_store_clipboard.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_130_store_clipboard.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,7 @@ +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/gtkhtml.c gtkhtml-3.13.91.mod12/src/gtkhtml.c --- gtkhtml-3.13.91/src/gtkhtml.c 2007-02-16 15:56:22.000000000 +0200 +++ gtkhtml-3.13.91.mod12/src/gtkhtml.c 2007-02-16 16:29:01.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_140_const_patch.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_140_const_patch.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_140_const_patch.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,3 +1,9 @@ +# Declare some variables as const to silence the compiler +# +# Copyright (C) 2006 - 2007 Nokia Corporation. +# This file is distributed under the terms of GNU LGPL license, either version 2 +# of the License, or (at your option) any later version. +# diff -ru gtkhtml-3.13.91/src/gtkhtml.c gtkhtml-3.13.91.mod13/src/gtkhtml.c --- gtkhtml-3.13.91/src/gtkhtml.c 2007-02-16 16:29:01.000000000 +0200 +++ gtkhtml-3.13.91.mod13/src/gtkhtml.c 2007-02-16 16:44:08.000000000 +0200 Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_150_image_magnification.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_150_image_magnification.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_150_image_magnification.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,6 +1,6 @@ # Scale images together with the text # -# Copyright (C) 2006 Nokia Corporation. +# Copyright (C) 2006 - 2007 Nokia Corporation. # This file is distributed under the terms of GNU LGPL license, either version 2 # of the License, or (at your option) any later version. # Modified: projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_160_get_motion_hints.diff =================================================================== --- projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_160_get_motion_hints.diff 2007-04-03 08:49:47 UTC (rev 10925) +++ projects/haf/trunk/gtkhtml/upstream/patches/gtkhtml_160_get_motion_hints.diff 2007-04-03 09:12:59 UTC (rev 10926) @@ -1,6 +1,6 @@ # Use proper function (gdk_device_get_state) to get next motion hint # -# Copyright (C) 2006 Nokia Corporation. +# Copyright (C) 2006 - 2007 Nokia Corporation. # This file is distributed under the terms of GNU LGPL license, either version 2 # of the License, or (at your option) any later version. #
- Previous message: [maemo-commits] r10925 - projects/haf/hafbuildbot
- Next message: [maemo-commits] r10927 - projects/haf/tags/gtkhtml
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]