See this page for instructions on how to use Flyspray: http://psi-im.org/wiki/Flyspray
Please Note!
Please do not create tasks here without discussing your bug or feature request on the forums or groupchat psi@conference.psi-im.org, *and* getting explicit confirmation by a developer to add it to flyspray.
Please Note!
Please do not create tasks here without discussing your bug or feature request on the forums or groupchat psi@conference.psi-im.org, *and* getting explicit confirmation by a developer to add it to flyspray.
FS#859 - Spell checker doesn't handle abbreviated words
Attached to Project:
Psi Jabber Client
Opened by Norman Rasmussen (normanr) - Saturday, 28 June 2008, 17:13 GMT-5
Last edited by Norman Rasmussen (normanr) - Saturday, 28 June 2008, 17:30 GMT-5
Opened by Norman Rasmussen (normanr) - Saturday, 28 June 2008, 17:13 GMT-5
Last edited by Norman Rasmussen (normanr) - Saturday, 28 June 2008, 17:30 GMT-5
|
Detailssee http://lists.affinix.com/pipermail/psi-devel-affinix.com/2008-June/008054.html for details, for convience here's the patch
Index: psi/src/tools/spellchecker/spellhighlighter.cpp =================================================================== --- psi/src/tools/spellchecker/spellhighlighter.cpp (revision 1170) +++ psi/src/tools/spellchecker/spellhighlighter.cpp (working copy) @@ -19,7 +19,7 @@ } // Match words (minimally) - QRegExp expression("\\b\\w+\\b"); + QRegExp expression("\\w[\\w']*\\w"); // Iterate through all words int index = text.indexOf(expression); |