diff options
author | Radek Doulik <rodo@src.gnome.org> | 2003-03-20 23:00:49 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2003-03-20 23:00:49 +0800 |
commit | ab6fef7852fe64f8c045b468c4fc2e37c16f33a3 (patch) | |
tree | d53ef8058c2cf480bfaed6f9698a1ea7ebdaebd1 /mail/Spell.idl | |
parent | 80375dd7154a2bb3d0c82a85f06b4cc93b3449a0 (diff) | |
download | gsoc2013-evolution-ab6fef7852fe64f8c045b468c4fc2e37c16f33a3.tar.gz gsoc2013-evolution-ab6fef7852fe64f8c045b468c4fc2e37c16f33a3.tar.zst gsoc2013-evolution-ab6fef7852fe64f8c045b468c4fc2e37c16f33a3.zip |
updated for gnome spell API 0.3
svn path=/trunk/; revision=20383
Diffstat (limited to 'mail/Spell.idl')
-rw-r--r-- | mail/Spell.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/Spell.idl b/mail/Spell.idl index 1f0efc2870..f251253422 100644 --- a/mail/Spell.idl +++ b/mail/Spell.idl @@ -27,7 +27,7 @@ module GNOME { typedef sequence<string> StringSeq; struct Language { string name; - string abrev; + string abbreviation; }; typedef sequence<Language> LanguageSeq; @@ -60,12 +60,12 @@ module GNOME { * add to session/personal dictionary */ void addWordToSession (in string word) raises (Error); - void addWordToPersonal (in string word) raises (Error); + void addWordToPersonal (in string word, in string language) raises (Error); /** * informs dictionary, that word 'word' will be replaced/corrected by word 'replacement' */ - void setCorrection (in string word, in string replacement); + void setCorrection (in string word, in string replacement, in string language); }; }; }; |