aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-spell.c
Commit message (Collapse)AuthorAgeFilesLines
* Reorder header inclusions accordingly to the Telepathy coding styleEmanuele Aina2013-04-021-2/+2
| | | | | | | | | | | | Sort by: • "config.h" • API declarations, if any • public libraries • internal headers, alphabetically sorted (mostly) http://telepathy.freedesktop.org/wiki/Style#A.23includes https://bugzilla.gnome.org/show_bug.cgi?id=697076
* Use a flat namespace for internal includesEmanuele Aina2013-04-011-2/+2
| | | | | | | | Directly add the libempathy, libempathy-gtk and extensions directories to the include search path. This decouples header inclusions from their location and helps when reorganizing the source files layout. https://bugzilla.gnome.org/show_bug.cgi?id=696950
* Use double quotes for all internal headersEmanuele Aina2013-04-011-2/+2
| | | | | | | This makes a bit more obvious which headers come from public libraries and which ones come from uninstalled utility libraries. https://bugzilla.gnome.org/show_bug.cgi?id=696950
* Drop unused/redundant header inclusionsEmanuele Aina2013-03-281-3/+0
| | | | | | | With the help of the script posted at http://stackoverflow.com/a/7135530 and some manual fixes, drop the unused or redundant #include directives. https://bugzilla.gnome.org/show_bug.cgi?id=696718
* empathy-spell: fix string leakPavel Vasin2012-10-081-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=685652
* Use _unref instead of _free _destroy when possible.unrefXavier Claessens2011-11-161-1/+1
| | | | | | | | | | | Replace g_(ptr_)array_free (foo, TRUE) and g_hash_table_destroy with respectively g_(ptr_)array_unref (foo) and g_hash_table_unref. I used this command to generate this patch: for f in `find -name "*.c"`; do sed -i $f -re 's/g_ptr_array_free \(([^ ,]+), TRUE\)/g_ptr_array_unref \(\1\)/'; done See Danielle's blog for explanation of possible bug _free can do: http://blogs.gnome.org/danni/2011/11/16/mistakes-with-g_value_set_boxed/
* empathy-spell: implement _get_enabled_language_codes with --disable-spellJonny Lamb2010-12-011-0/+7
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* empathy-spell: updated _get_suggestions disabled implementationJonny Lamb2010-12-011-1/+2
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* add a new popup-menu item in the chat window allowing to add words to ↵Vitaly Minko2010-10-221-1/+30
| | | | dictionaries (#550775).
* Separate spelling suggestions in one sub-menu per language (#532832)Vitaly Minko2010-10-151-38/+53
|
* Port Empathy code to GSettings, remove EmpathyConfDanielle Madeley2010-06-181-11/+13
|
* empathy_spell_check: remove debug message if there is no languages configuredGuillaume Desmottes2009-12-111-1/+0
| | | | It floods debug logs.
* Ignoring non installed languagesFelix Kaser2009-10-211-1/+6
| | | | Languages which are in the gconf setting but are not installed any more are ignored, fixes bug #598954
* empathy-spell: remove trailing tabsGuillaume Desmottes2009-06-251-2/+2
|
* empathy-spell: update FSF addressGuillaume Desmottes2009-05-181-2/+2
|
* Use gi18n-lib.h instead of gi18n.h for libraries.Xavier Claessens2008-12-121-1/+1
| | | | svn path=/trunk/; revision=1967
* Make use of tp-glib debug system.Xavier Claessens2008-05-011-12/+11
| | | | svn path=/trunk/; revision=1066
* Cleanup the spell code.Xavier Claessens2008-04-221-19/+20
| | | | svn path=/trunk/; revision=1031
* Use enchant instead of aspell. Fixes bug #460624 (Frederic Peters).Xavier Claessens2008-04-221-72/+66
| | | | svn path=/trunk/; revision=1030
* Move modules that make no sense to be used in other applicaton from ↵Xavier Claessens2008-03-141-1/+0
| | | | | | libempathy-gtk/ to src/ svn path=/trunk/; revision=789
* Move empathy-conf to libempathy-gtk. libempathy do not depend directly on ↵Xavier Claessens2008-01-231-1/+1
| | | | | | gconf anymore. svn path=/trunk/; revision=597
* Rename all filenames starting with "gossip" by "empathy", change namespaceXavier Claessens2007-06-221-0/+452
2007-06-22 Xavier Claessens <xclaesse@gmail.com> * libempathy/*.[ch]: * libempathy-gtk/*.[ch]: * src/*.[ch]: Rename all filenames starting with "gossip" by "empathy", change namespace of all gossip_*() functions to empathy_*(). Fixes bug #444490 (Mario Danic, Xavier Claessens). svn path=/trunk/; revision=170