aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorSushma Rai <rsushma@src.gnome.org>2005-08-17 17:35:22 +0800
committerSushma Rai <rsushma@src.gnome.org>2005-08-17 17:35:22 +0800
commit4d1961b7f6ca997275bac01ee86b82426b6ca37f (patch)
tree0785f4305b6642d3c47d0755f63c63343a90dd84 /addressbook
parente00e8f790917f18a8a16e66e99c234b78d43ac65 (diff)
downloadgsoc2013-evolution-4d1961b7f6ca997275bac01ee86b82426b6ca37f.tar.gz
gsoc2013-evolution-4d1961b7f6ca997275bac01ee86b82426b6ca37f.tar.zst
gsoc2013-evolution-4d1961b7f6ca997275bac01ee86b82426b6ca37f.zip
Handling GTK_RESPONSE_DELETE_EVENT response.
svn path=/trunk/; revision=30144
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog9
-rw-r--r--addressbook/gui/merging/eab-contact-merging.c3
2 files changed, 11 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 4458f0fbcf..793e291d73 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,4 +1,11 @@
-2005-08-08 Devashish Sharma <sdevashish@novell.com>
+2005-08-17 Devashish Sharma <sdevashish@novell.com>
+
+ * gui/merging/eab-contact-merging.c (response): If the Duplicate
+ Contact Detected Dialog is closed by clicking the cross on the dialog
+ window the contact-list-editor or contact-editor dialog become unusable
+ and cant be closed. Added a case for catching GTK_RESPONSE_DELETE_EVENT.
+
+2005-08-17 Devashish Sharma <sdevashish@novell.com>
* gui/merging/eab-contact-duplicate-detected.glade: In case of a
duplicate contact list if the list is big the Cancel and Add buttons of
diff --git a/addressbook/gui/merging/eab-contact-merging.c b/addressbook/gui/merging/eab-contact-merging.c
index a43c56043d..37f147eaa4 100644
--- a/addressbook/gui/merging/eab-contact-merging.c
+++ b/addressbook/gui/merging/eab-contact-merging.c
@@ -143,6 +143,9 @@ response (GtkWidget *dialog, int response, EContactMergingLookup *lookup)
case 1:
cancelit (lookup);
break;
+ case GTK_RESPONSE_DELETE_EVENT:
+ cancelit (lookup);
+ break;
}
}
>2013-05-223-1/+3 | | | | Reported by: bdrewery * Update to 2.24.18.kwm2013-05-222-3/+3 | * Make PORTDOCS in the -reference framework overwriteable.kwm2013-05-222-12/+15 | | | | | | | | | | | | | So some of the -reference ports that install multiple docs or "books" can make sure they get installed correctly. This impacts the -reference ports of glib20, gtk20 and gtk30. The problem was that for example in glib20 the reference was installed in share/doc/glib/{glib,gio,gobject} however devhelp only look in share/doc/${book} for the *.devhelp2 file. PR: ports/173577 Submitted by: Victor Balada Diaz <victor@bsdes.net> * Patch multiple vulnerabilities in x11-toolkits/plib.rakuco2013-05-193-1/+79 | | | | | PR: ports/178710 Submitted by: Denny Lin <dennylin93@hs.ntnu.edu.tw> * - Update EFL libraries to 1.7.7gblach2013-05-192-3/+3 | | | | | | - Update Enlightenment to 0.17.3 Approved by: crees (mentor) * - Fix typo, introduced in my previous commitgahr2013-05-181-1/+1 | * - Add explicit USE_XORG=X11 so CONFIGURE_ARGS gets --x-includesgahr2013-05-181-1/+2 | | | | Reported by: PortBuild (via erwin) * Add the patch I added to qt4-corelib in r317896 to some other Qt ports.rakuco2013-05-151-0/+35 | | | | | | | | | | | | | These ports which previously failed to build with clang-i386 use their private copies of the qsimd_p.h header, since this private header is not installed at all (which, in turns, makes the PORTREVISION bump in qt4-corelib quite useless). We thus need to add a copy of the same patch to all these ports to make sure the qsim_p.h they use when being built is actually the one we want. Hopefully this gets miwi happy and people on clang-i386 can build these ports again. * - Fix build with Tcl/Tk 8.6gahr2013-05-153-2/+152 | | | | | Reported by: miwi (Tcl/Tk 86 exp-run) Approved by: portmgr * - Fix build on amd64 < 9.0 by disabling assembly optimizationsgahr2013-05-151-0/+20 | * - Fix build with Tcl/Tk 8.6 [1]gahr2013-05-143-8/+42 | | | | | | | | | - Trim Makefile headers - Fix WWW line in pkg-descr - Remove article from COMMENT Reported by: miwi (Tcl/Tk 86 exp-run) Approved by: portmgr * - Fix PLISTgahr2013-05-141-0/+1 | | | | Reported by: QAT * - Update to 2.0.1gahr2013-05-132-7/+6 | | | | | | - Fix build with Tcl/Tk 8.6 [1] Reported by: miwi (Tcl/Tk 86 exp-run) * - Update to 2.4.1gahr2013-05-133-27/+11 | | | | | | - Fix build with Tcl/Tk 8.6 [1] Reported by: miwi (Tcl/Tk 86 exp-run) * - Fix build with Tcl 8.6gahr2013-05-132-7/+18 | | | | Reported by: miwi (Tcl/Tk 86 exp-run) * - Update to 1.7.39gahr2013-05-132-3/+3 | | | | | | | | | | | | | | Changes: * Small changes to return types in FXIO (and subclasses) for flush(), eof(). * FXSemaphore implemented in terms of mutex and condition on MacOSX and Minix. * FXMat4d and FXMat2d AVX accelerated when compiled for AVX. * ADA programming language patterns added to Adie's syntax file. * Fix in PathFinder escapement of filenames prior to spawning process to open document. * Compile-time check improved before implementing call to utimensat() in FXStat. * - Respect PREFIX and DOCSDIRgahr2013-05-132-16/+10 | | | | Reported by: miwi (Tcl/Tk 86 exp-run) * This ports will link to dbus-glib if available. Switch to dbus-glib so itkwm2013-05-131-2/+2 | | | | | | | always enables DBUS support in unique. PR: ports/178287 Submitted by: pawel@ * Update to 0.1.6madpilot2013-05-133-4/+9 | * fix compile with boost >= 1.50oliver2013-05-131-0/+5 | * - Add global options (DOCS, NLS, etc) to the OPTIONS_DEFINE and partly ↵makc2013-05-122-0/+4 | | | | | | | | | | | revert r315222 [1] - Convert WITH_DEBUG to new options framework - Trim Makefile header - Adjust COMMENTs - Reformat/update description [1] See follow-up discussion: http://lists.freebsd.org/pipermail/svn-ports-head/2013-March/016094.html * Import my upstream commit to fix the detection of 3dNOW! support.rakuco2013-05-121-1/+0 | | | | | | | | | | | | The patch was originally written by dim@ and fixes the way Qt includes the <mm3dnow.h> header. See the upstream commits' message for more information. Practically speaking, this should make the Qt ports build with clang on i386 again, and allows us to revert commits r316233, r316348 and r316341: miwi was very laconic in his commit messages, but the changes all point to the issue being fixed here. Submitted by: dim * - Bump PORTREVISION after update of x11/libxfce4util, and x11-wm/xfce4-panelolivierd2013-05-091-6/+4 | | | | | | | | While I'm here, - Finish to convert USES - Trim Makefile header - Remove ABI version in LIB_DEPENDS - Remove desktopfileutils, because MimeType entry is not present in desktop file * Finish converting x11* from WITHOUT_NLS to PORT_OPTIONS:MNLSbapt2013-05-061-8/+8 | * - When DISABLE_MAKE_JOBS or MAKE_JOBS_UNSAFE is set, also setbdrewery2013-05-041-2/+0 | | | | | | | | | | | | MAKE_JOBS_NUMBER to 1. This makes it safe to do -j${MAKE_JOBS_NUMBER} without any extra logic. - Cleanup ports working around the empty MAKE_JOBS_NUMBER - This also fixes several ports that were expecting MAKE_JOBS_NUMBER to always have a number Reviewed by: bapt Spotted by: John Marino <draco@marino.st> With hat: portmgr * - Update to 3.3.1madpilot2013-05-042-3/+3 | | | | | PR: ports/178307, ports/178308 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) * Chase security/libgcrypt updateehaupt2013-05-041-1/+1 | * - conversion to USES framework for gettextjgh2013-05-011-7/+7 | | | | Approved by: portmgr (bapt@) * - Update lang/librep to 0.92.3sperber2013-05-012-7/+7 | | | | | | | | | | | | | | | | | | | | | | - Remove shlib versions - Add USE_READLINE and USES= pkgconfig - Update CPPFLAGS and LDFLAGS - Update pkg-descr - Update x11-toolkits/rep-gtk2 to 0.90.8.1 - Update x11-wm/sawfish to 1.9.1 - Add ART20 license and set LICENSE_COMB to multi - Update USE_XORG to include xtst - Add USES= pkgconfig - Add PORTSCOUT to exclude unstable releases - Trim Makefile headers - Update MASTER_SITES PR: ports/170173 Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com> Approved by: beat (mentor) * Update to use: USES+= adabapt2013-04-3015-906/+2230 | | | | | | | | | | | | Additionally: 1) A pre-generated reference manual has been added as a second distfile and is installed 2) License added 3) DESTDIR support added (comes from pkgsrc) (will be useful once staging will hit the tree) 4) gcc 4.7-specific patches 5) PLIST order alphabetically and fix issues with it. PR: ports/178145 Submitted by: John Marino <draco@marino.st> * Remove latest references to USE_BISONbapt2013-04-291-1/+0 | * Rely on bsdtar to autodetermine the format of the distfiles when possiblebapt2013-04-293-16/+3 | | | | | | | For a while now bsdtar is able to autotermine compression and archive format. Let's then use tar directly instead of piping to tar. Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format * Convert the last USE_ICONV to USES=iconvbapt2013-04-289-16/+10 | * Add Gstreamer 1.0.7. This is the new stable version of thekwm2013-04-282-0/+14 | | | | | | | | | | | | | | | Gstreamer multimedia framework. Use the USE_GSTREAMER1 macro to select Gstreamer 1.0 plugins. A new chapter for the porters handbook about gstreamer is a work in progress. X related plugins are now stand alone. The gio plugin is now part of the gstreamer1-plugins port and the oss plugins are now part of the gstreamer1-plugins-good port. Note that the pulseaudio plugin is missing because it needs a newer version of pulseaudio. Also there are still a number of plugins from -bad which haven't been ported to the 1.0 API yet. * - update WWWdinoex2013-04-271-1/+1 | * - Convert USE_GETTEXT to USES (part 4)ak2013-04-268-14/+8 | | | | Approved by: portmgr (bapt) * - Convert USE_GETTEXT to USES (part 3)ak2013-04-2517-17/+17 | | | | Approved by: portmgr (bapt) * - Convert USE_GETTEXT to USES (part 1)ak2013-04-248-16/+8 | | | | Approved by: portmgr (bapt) * - Add LICENSEsunpoet2013-04-241-18/+6 | | | | | - Remove outdated PERL_LEVEL check - Cleanup Makefile header * - Add LICENSEsunpoet2013-04-241-14/+6 | | | | | - Remove outdated PERL_LEVEL check - Cleanup Makefile header * - Chase x11-toolkits/fox16 shlib version bumpgahr2013-04-243-3/+3 | * - Update to 1.6.49gahr2013-04-242-4/+4 | | | | | Changes: * Check index out of bounds in FXTabBook::setCurrent(). * Finish converting the whole ports tree to USES=pkgconfigbapt2013-04-2322-65/+29 | * - Remove lang/tcl83 and x11-toolkits/tk83 (expired)gahr2013-04-2313-740/+2 | | | | | | - Remove references to Tcl/Tk 8.3 from bsd.tcl.mk - Update ports that required 8.3+ to require 8.4+ (since 8.5 is the default, I don't expect this change to cause much trouble) * - Update EFL libraries to 1.7.6(.1)gblach2013-04-233-6/+8 | | | | | | - Update Enlightenment to 0.17.2.1 Approved by: crees (mentor) * - Make qt4 compile under FreeBSD 10miwi2013-04-221-0/+1 | | | | Approved by: makc @#kde-freebsd/freenode * - Fix a long standing problem in tclConfig.sh and tkConfig.sh, where pathsgahr2013-04-183-0/+20 | | | | | | | | | | | | | | | | were set based on WRKSRC instead of PREFIX. This mainly affected TEA-based extensions that source tclConfig.sh / tkConfig.sh to set important variables. An example is TCL_SRC_DIR, which is used to locate Tcl/Tk private header files such as tclUnixPort.h or tkUnixPort.h. This variable was previously set to WRKSRC, which caused ports to need additional tweaks to CFLAGS or CONFIGURE_ARGS. It should now be possible to build TEA-based extensions by specifying only the CONFIGURE_ARGS --with-tcl=${TCL_LIBDIR} / --with-tk=${TK_LIBDIR}. Feature safe: yes Approved by: bapt (portmgr) * - make portlint happierdinoex2013-04-181-2/+1 | | | | | | - drop maintainership cause options where removed Feature safe: yes * - Mark BROKEN fails to buildmiwi2013-04-171-0/+2 | | | | | | | | I/usr/local/include -DUSE_XIM -c rbgdkcursor.c rbgdkcursor.c:48:27: error: rbgdkcursors.h: No such file or directory *** Error code 1 Feature safe: yes * - Update Tcl/Tk 8.5 to 8.5.14gahr2013-04-172-3/+3 | | | | | | Release notes: http://code.activestate.com/lists/tcl-core/13208/ Feature safe: yes * Unbreak after graphviz updatepawel2013-03-303-5/+59 | | | | | PR: ports/177023 Submitted by: Bojan Petrovic <bojan_petrovic@fastmail.fm> * For perl@ owned ports:eadler2013-03-293-13/+5 | | | | | - Fix COMMENT - Trim header * - unbreak the buildrm2013-03-292-9/+40 | | | | | | | | - trim Makefile header, while here PR: 177350 Submitted by: John Marino <draco@marino.st> Obtained from: DragonFly BSD * Style: tab -> space.eadler2013-03-294-4/+4 | | | | Most contributors copy an existing port when writing their own so reduce the number of bad examples in the tree. * Drop support for old versions of FreeBSD from unmaintained portseadler2013-03-281-2/+0 | | | | Reviewed by: miwi * - Update to 1.7.38gahr2013-03-283-10/+15 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: * Totally revamped implementation of FXThreadPool. The new FXThreadPool is organized about a lock-free queue, with semaphores managing synchronization between producer- and worker-threads. Thus, threads never block unless two edge conditions are reached: either the task-queue is empty, in which case worker threads will block (nothing to do), or task queue is filled up, and producer thread will block (no room in queue). An important new capability is for an additional thread to enter into the task-processing loop temporarily. Finally, the thread starting FXThreadPool, as well as the worker threads belonging to the FXThreadPool now have a thread-local variable referencing the FXThreadPool. This allows the threads involved to locate the address of the FXThreadPool, for instance to create an FXTaskGroup. * New FXTaskGroup class manages groups of task to be executed in parallel on a FXThreadPool. Tasks started through the FXTaskGroup interface are guaranteed to be completed within the lifetime of the FXTaskGroup instance. * New FXParallelInvoke and FXParallelFor template functions to implement parallel function call, and parallel for loop. This uses the new FXTaskGroup, and indirectly, FXThreadPool. * Pass optional stacksize when constructing FXWorker. Added stacksize option to FXThreadPool with which new workers will be started. * FXBarrier wait primitive now sports API's to change break-through threshold, and forced-release option. * FXSemaphore now has API's for timed wait, and try-wait for non-blocking semaphore decrement. * Added additional atomic variable types in FXAtomic.h. * Added check for maximum dash-pattern length in FXDC and FXDCWindow. * Fixed some issues with FXStat of files. * Off-by-one error fixed in FXRex counted repeat of complex subpatterns. * Clear internal text pointers in FXRex prior to a match. * Added a few missing print-patterns to Adie.stx syntax file. * Added FXSemaphore-protected queue class FXSemaQueue; this is itself a wrapper around FXPtrQueue. * Added lock-free queue class FXLFQueue. * Numeric conversion issues fixed in fxstrtod.cpp; in particular, some corner cases now give more accurate results. * The function fxscanf.cpp does no longer eat the "e" when scanning for a number, unless actually followed by digits. * Switch to statvfs() from statfs() in FXStat. * Indexing operator added to FXAutoPtr. * Added new class FXScopedThread. FXScopedThread automatically performs a join() upon destruction. * Mechanically convert unmaintained ports which use "gnomehack" to use ↵eadler2013-03-28