aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table
diff options
context:
space:
mode:
authorSankarasivasubramanian Pasupathilingam <psankar@src.gnome.org>2008-10-03 19:46:03 +0800
committerSankarasivasubramanian Pasupathilingam <psankar@src.gnome.org>2008-10-03 19:46:03 +0800
commitcc2f6e09676f9630000827bd98e3ce4ac7bcdbb2 (patch)
treed68a9e84cb4841172552a473157376950e0d13b3 /widgets/table
parentfe5198584ee9f4823cc7bf13bc91ba83b7fad524 (diff)
downloadgsoc2013-evolution-cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2.tar
gsoc2013-evolution-cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2.tar.gz
gsoc2013-evolution-cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2.tar.bz2
gsoc2013-evolution-cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2.tar.lz
gsoc2013-evolution-cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2.tar.xz
gsoc2013-evolution-cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2.tar.zst
gsoc2013-evolution-cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2.zip
Change license from GPL to LGPL
svn path=/trunk/; revision=36547
Diffstat (limited to 'widgets/table')
-rw-r--r--widgets/table/ChangeLog9
-rw-r--r--widgets/table/e-table-item.c36
2 files changed, 25 insertions, 20 deletions
diff --git a/widgets/table/ChangeLog b/widgets/table/ChangeLog
index 8a4373ad1a..c14f484cfe 100644
--- a/widgets/table/ChangeLog
+++ b/widgets/table/ChangeLog
@@ -1,5 +1,14 @@
2008-10-03 Sankar P <psankar@novell.com>
+License Changes And:
+
+ * e-table-item.c (eti_event): remove obsolete check for
+ buttons 4/5 in 2BUTTON_PRESS; cf. gdk_event_translate /
+ _gdk_event_button_generate that turn this into a scroll
+ event these days.
+
+2008-10-03 Sankar P <psankar@novell.com>
+
* widgets/table/e-cell-progress.c:
* widgets/table/e-cell-progress.h:
Removed obsolete files
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index a4ec641cc0..112865f01a 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -1,27 +1,27 @@
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* e-table-item.c
- * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
- *
- * Authors:
- * Chris Lahey <clahey@ximian.com>
- * Miguel de Icaza <miguel@gnu.org>
*
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License, version 2, as published by the Free Software Foundation.
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) version 3.
*
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
+ * Lesser General Public License for more details.
*
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with the program; if not, see <http://www.gnu.org/licenses/>
+ *
+ *
+ * Authors:
+ * Chris Lahey <clahey@ximian.com>
+ * Miguel de Icaza <miguel@gnu.org>
+ *
+ * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*/
-
/*
* TODO:
* Add a border to the thing, so that focusing works properly.
@@ -2547,10 +2547,6 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
d(g_print("%s: GDK_2BUTTON_PRESS received, button %d\n", __FUNCTION__, e->button.button));
- if (e->button.button == 5 ||
- e->button.button == 4)
- return FALSE;
-
/*
* click_count is so that if you click on two
* different rows we don't send a double click signal.