OLD | NEW |
1 Index: src/hunspell/affixmgr.cxx | 1 Index: src/hunspell/affixmgr.cxx |
2 =================================================================== | 2 =================================================================== |
3 RCS file: /cvsroot/hunspell/hunspell/src/hunspell/affixmgr.cxx,v | 3 RCS file: /cvsroot/hunspell/hunspell/src/hunspell/affixmgr.cxx,v |
4 retrieving revision 1.41 | 4 retrieving revision 1.41 |
5 diff -u -r1.41 affixmgr.cxx | 5 diff -u -r1.41 affixmgr.cxx |
6 --- src/hunspell/affixmgr.cxx 16 Dec 2011 09:15:34 -0000 1.41 | 6 --- src/hunspell/affixmgr.cxx 16 Dec 2011 09:15:34 -0000 1.41 |
7 +++ src/hunspell/affixmgr.cxx 29 May 2014 01:05:07 -0000 | 7 +++ src/hunspell/affixmgr.cxx 29 May 2014 01:05:07 -0000 |
8 @@ -14,8 +14,14 @@ | 8 @@ -14,8 +14,14 @@ |
9 | 9 |
10 #include "csutil.hxx" | 10 #include "csutil.hxx" |
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1345 char * suggest_morph_for_spelling_error(const char * word); | 1345 char * suggest_morph_for_spelling_error(const char * word); |
1346 | 1346 |
1347 private: | 1347 private: |
1348 +#ifdef HUNSPELL_CHROME_CLIENT | 1348 +#ifdef HUNSPELL_CHROME_CLIENT |
1349 + // Not owned by us, owned by the Hunspell object. | 1349 + // Not owned by us, owned by the Hunspell object. |
1350 + hunspell::BDictReader* bdict_reader; | 1350 + hunspell::BDictReader* bdict_reader; |
1351 +#endif | 1351 +#endif |
1352 int testsug(char** wlst, const char * candidate, int wl, int ns, int cpdsugg
est, | 1352 int testsug(char** wlst, const char * candidate, int wl, int ns, int cpdsugg
est, |
1353 int * timer, clock_t * timelimit); | 1353 int * timer, clock_t * timelimit); |
1354 int checkword(const char *, int, int, int *, clock_t *); | 1354 int checkword(const char *, int, int, int *, clock_t *); |
OLD | NEW |