aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-item.c
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table/e-table-item.c')
-rw-r--r--widgets/table/e-table-item.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index 545e1185ad..0c6067ee86 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -1515,7 +1515,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
return_val = FALSE;
gtk_signal_emit (GTK_OBJECT (eti), eti_signals [CLICK],
- row, col, e, &return_val);
+ row, view_to_model_col(eti, col), e, &return_val);
if (return_val)
return TRUE;
@@ -1553,7 +1553,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
e_table_selection_model_maybe_do_something(eti->selection, view_to_model_row(eti, row), view_to_model_col(eti, col), 0);
gtk_signal_emit (GTK_OBJECT (eti), eti_signals [RIGHT_CLICK],
- row, col, e, &return_val);
+ row, view_to_model_col(eti, col), e, &return_val);
break;
case 4:
case 5:
/span> | | Upstream appears to be gone and the last release was in 2003. PR: 218723 Submitted by: w.schwarzenfeld@utanet.at * Add IPV6 option to ports using it but not defining it.Mathieu Arnold2018-09-101-1/+1 | * USE_BDB cleanup.Mathieu Arnold2016-08-081-1/+1 | | | | | | | | | | | - USE_BDB=4x+ -> USES=bdb. - USE_BDB=yes -> USES=bdb. - USE_BDB=xx -> USES=bdb:xx. Other modernisations when I see them. PR: 209183 Sponsored by: Absolight * Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-2/+2 | | | | | With hat: portmgr Sponsored by: Absolight * Berkeley DB cleanup, remove versions 4.0 ... 4.7.Matthias Andree2014-08-221-1/+1 | | | | | | | | | | | | | | | | | | | | | | - Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) * Rename mail/ patch-xy patches to reflect the files they modify.Adam Weinberger2014-07-294-0/+0 | * Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger2014-07-161-1/+1 | * mail/drac: Nope, it's still not jobs safeJohn Marino2014-05-071-0/+1 | | | | | | | | | | The referenced PR removed the NOT_JOBS_SAFE designation introduced by r329631 without an explanation from the submitter. How do I know this? Because it promptly broke on the very next bulk run. This port simply requires a serial -j1 build. I can reproduce spurious failures in Redports as well. Failures may be easier to reproduce with ccache... PR: ports/187438 * - Add stage supportRene Ladan2014-04-054-59/+61 | | | | | | | - Reorganize option support PR: ports/187438 Submitted by: Takefu <takefu@airport.fm> * Mark seven unmaintained ports as jobs unsafe.John Marino2013-10-071-0/+2 | * Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-211-5/+2 | | | | mail) * Move the rc.d scripts of the form *.sh.in to *.inDoug Barton2012-08-062-1/+1 | | | | | | Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op * - Remove ftp.parodius.com from MASTER_SITES due to its forthcomingJase Thew2012-07-081-1/+0 | | | | | | | | closure. We thank Parodius for the hosting services they provided. PR: ports/169570 Submitted by: Jeremy Chadwick <jdc@koitsu.org> Approved by: culot (mentor) * In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1 | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. * - remove MD5Olli Hauer2011-07-031-1/+0 | * Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1 | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# * Fix a few "bad example" problems in the rc.d scripts that have beenDoug Barton2009-07-161-1/+0 | | | | | | | | | | | | | | | | | | | | propogated by copy and paste. 1. Primarily the "empty variable" default assignment, which is mostly ${name}_flags="", but fix a few others as well. 2. Where they are not already documented, add the existence of the _flags (or other deleted empties) option to the comments, and in some cases add comments from scratch. 3. Replace things that look like: prefix=%%PREFIX%% command=${prefix}/sbin/foo to just use %%PREFIX%%. In many cases the $prefix variable is only used once, and in some cases it is not used at all. 4. In a few cases remove ${name}_flags from command_args 5. Remove a long-stale comment about putting the port's rc.d script in /etc/rc.d (which is no longer necessary). No PORTREVISION bumps because all of these changes are noops. * Maintainer moved to ports@FreeBSD.org.Jeremy Chadwick2008-11-201-1/+1 | * - Cleanup compile warning (implicit exit(3); needs stdlib.h)Jeremy Chadwick2008-06-042-1/+13 | | | | | | - Fix plist errors when NOPORTDOCS is used Reported by: itetcu * Accidental removal of bsd.port.pre.mk include. Restoring...Jeremy Chadwick2008-06-041-0/+2 | * Cleanup for 5.x.Jeremy Chadwick2008-06-041-3/+0 | * - Fixups for rc.subr dracd script (likely did not work withoutJeremy Chadwick2006-11-224-29/+25 | | | | | | | | | | | | some dracd_xxx variables already defined in rc.conf) - Add new FTP mirror, since mirrors for this are few - Remove pkg-message; that notice has been around long enough :) - Grammatical fixes/wording in pkg-descr - Take over as maintainer of this port PR: ports/105722 Reviewed by: philip Approved by: philip * Remove USE_REINPLACE from ports starting with MEdwin Groothuis2006-05-111-1/+0 | * Add knob WITH_POSTFIX_DB41 to use with postfix/db41.Jun Kuriyama2006-03-272-3/+11 | | | | | This port shoud support more flavors of databases/db*, but I just only use db41 with postfix in my environment. * Remove dracd_flags completely since it's used automatically.Florent Thoumie2006-03-232-2/+2 | | | | Noticed by: mnag * Fix quote issue in the startup script.Florent Thoumie2006-03-232-2/+2 | | | | | Noticed by: Troy <troy@twisted.net> Fix by: Jeremy Chadwick <freebsd@jdc.parodius.com> * Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.Doug Barton2006-02-211-1/+1 | | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts. * - Add SHA256Pav Lucistnik2005-11-251-0/+2 | * - Add dracd_flags to rc script, useful for changing the default dracdb path andPav Lucistnik2005-05-20