summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDom Lachowicz <domlachowicz@gmail.com>2006-02-20 15:39:37 +0000
committerDom Lachowicz <domlachowicz@gmail.com>2006-02-20 15:39:37 +0000
commit0354934712571e1acfc2223bf2d3d50f27892b97 (patch)
tree310ff69de23c8f45d2bb2c7941f66d8226ed6c8e
parent342bf69d1a517ff8705433698796dd52eb9001d9 (diff)
downloadenchant-0354934712571e1acfc2223bf2d3d50f27892b97.tar.gz
update some warning comments
git-svn-id: svn+ssh://svn.abisource.com/svnroot/enchant/trunk@21105 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
-rw-r--r--src/aspell/aspell_provider.c6
-rw-r--r--src/enchant.c2
2 files changed, 2 insertions, 6 deletions
diff --git a/src/aspell/aspell_provider.c b/src/aspell/aspell_provider.c
index 750e5af..96cd127 100644
--- a/src/aspell/aspell_provider.c
+++ b/src/aspell/aspell_provider.c
@@ -152,10 +152,6 @@ aspell_provider_request_dict (EnchantProvider * me, const char *const tag)
if (pspell_error_number (spell_error) != 0)
{
- /*
- g_warning ("Aspell Enchant backend error when requesting '%s' dictionary: %s\n",
- tag, pspell_error_message(spell_error));
- */
enchant_provider_set_error (me, pspell_error_message(spell_error));
return NULL;
}
@@ -271,7 +267,7 @@ init_enchant_provider (void)
provider->list_dicts = aspell_provider_list_dicts;
#else
# ifdef __GNUC__
-# warning "You're using an ancient aspell. aspell_provider_list_dicts() is not implemented."
+# warning "You're using an ancient version of Aspell. Some things won't work properly."
# endif
#endif
provider->free_string_list = aspell_provider_free_string_list;
diff --git a/src/enchant.c b/src/enchant.c
index 6a14349..bcbdb6c 100644
--- a/src/enchant.c
+++ b/src/enchant.c
@@ -859,7 +859,7 @@ enchant_load_providers_in_dir (EnchantBroker * broker, const char *dir_name)
}
else
{
- g_warning ("Module error: %s\n", g_module_error());
+ g_warning ("Error loading plugin: %s\n", g_module_error());
}
g_free (filename);