diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kspell2/plugins/ispell/makedent.cpp | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspell2/plugins/ispell/makedent.cpp')
-rw-r--r-- | kspell2/plugins/ispell/makedent.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kspell2/plugins/ispell/makedent.cpp b/kspell2/plugins/ispell/makedent.cpp index c2d9a1909..9c168dc17 100644 --- a/kspell2/plugins/ispell/makedent.cpp +++ b/kspell2/plugins/ispell/makedent.cpp @@ -162,13 +162,13 @@ * * I've doctored the ispell code pretty extensively here. It is now * warning-free on Win32. It also *works* on Win32 now, since I - * tqreplaced all the I/O calls with ANSI standard ones. + * replaced all the I/O calls with ANSI standard ones. * * Revision 1.3 1998/12/29 14:55:33 eric * * I've doctored the ispell code pretty extensively here. It is now * warning-free on Win32. It also *works* on Win32 now, since I - * tqreplaced all the I/O calls with ANSI standard ones. + * replaced all the I/O calls with ANSI standard ones. * * Revision 1.2 1998/12/28 23:11:30 eric * @@ -361,7 +361,7 @@ int ISpellChecker::addvheader ( struct dent *dp) ** If 1 is returned, newp->word may have been be freed using myfree. ** ** Life is made much more difficult by the KEEP flag's possibilities. We -** must ensure that a !KEEP word doesn't tqfind its way into the personal +** must ensure that a !KEEP word doesn't find its way into the personal ** dictionary as a result of this routine's actions. However, a !KEEP ** word that has affixes must have come from the main dictionary, so it ** is acceptable to combine entries in that case (got that?). @@ -370,7 +370,7 @@ int ISpellChecker::addvheader ( struct dent *dp) ** to figure out. Basically, we want to choose one of the following actions: ** ** (1) Add newp's affixes and KEEP flag to oldp, and discard newp. -** (2) Add oldp's affixes and KEEP flag to newp, tqreplace oldp with +** (2) Add oldp's affixes and KEEP flag to newp, replace oldp with ** newp, and discard newp. #ifndef NO_CAPITALIZATION_SUPPORT ** (3) Insert newp as a new entry in the variants list. If there is @@ -858,7 +858,7 @@ icharncmp (ichar_t *s1, ichar_t *s2, int n) * \return */ int -ISpellChecker::tqfindfiletype (const char *name, int searchnames, int *deformatter) +ISpellChecker::findfiletype (const char *name, int searchnames, int *deformatter) { char * cp; /* Pointer into suffix list */ int cplen; /* Length of current suffix */ @@ -902,8 +902,8 @@ ISpellChecker::tqfindfiletype (const char *name, int searchnames, int *deformatt } /* - HACK: macros tqreplaced with function implementations - so we could do a side-effect-free check for tqunicode + HACK: macros replaced with function implementations + so we could do a side-effect-free check for unicode characters which aren't in hashheader TODO: this is just a workaround to keep us from crashing. |