mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 01:08:45 +00:00
Let new pspell work
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH-1_2_X@4873 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2f4db2b6cc
commit
ad4ddc98a0
@ -1,3 +1,7 @@
|
||||
2002-08-06 John Levon <levon@movementarian.org>
|
||||
|
||||
* sp_spell.C: let the new aspell pspell work
|
||||
|
||||
2002-08-01 John Levon <levon@movementarian.org>
|
||||
|
||||
* lyxfunc.C: let user specify a non-existent file on open
|
||||
|
@ -75,7 +75,10 @@ namespace {
|
||||
#include "support/LAssert.h"
|
||||
|
||||
#define USE_ORIGINAL_MANAGER_FUNCS 1
|
||||
// new aspell pspell missing extern "C"
|
||||
extern "C" {
|
||||
# include <pspell/pspell.h>
|
||||
}
|
||||
|
||||
#include "sp_pspell.h"
|
||||
|
||||
@ -107,7 +110,7 @@ PSpell::~PSpell()
|
||||
void PSpell::initialize(BufferParams const &, string const & lang)
|
||||
{
|
||||
PspellConfig * config = new_pspell_config();
|
||||
config->replace("language-tag", lang.c_str());
|
||||
pspell_config_replace(config, "language-tag", lang.c_str());
|
||||
spell_error_object = new_pspell_manager(config);
|
||||
if (pspell_error_number(spell_error_object) != 0) {
|
||||
error_ = pspell_error_message(spell_error_object);
|
||||
|
Loading…
Reference in New Issue
Block a user