mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
make it compile again
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16211 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a781d8c98d
commit
8193ac607b
@ -27,8 +27,6 @@ extern "C" {
|
||||
|
||||
namespace lyx {
|
||||
|
||||
using docstring;
|
||||
|
||||
using std::endl;
|
||||
using std::string;
|
||||
|
||||
@ -155,8 +153,9 @@ docstring const PSpell::error()
|
||||
}
|
||||
|
||||
if (err)
|
||||
return err;
|
||||
return "";
|
||||
// FIXME UNICODE: err is not in UTF8, but probably the locale encoding
|
||||
return from_utf8(err);
|
||||
return docstring();
|
||||
}
|
||||
|
||||
|
||||
|
@ -18,13 +18,13 @@
|
||||
#include <map>
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
||||
class PspellManager;
|
||||
class PspellStringEmulation;
|
||||
class PspellCanHaveError;
|
||||
class PspellConfig;
|
||||
|
||||
namespace lyx {
|
||||
|
||||
class BufferParams;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user