aboutsummaryrefslogtreecommitdiffstats
path: root/mail/Spell.idl
diff options
context:
space:
mode:
Diffstat (limited to 'mail/Spell.idl')
-rw-r--r--mail/Spell.idl6
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);
};
};
};