|
a/src/aspell/rclaspell.cpp |
|
b/src/aspell/rclaspell.cpp |
|
... |
|
... |
282 |
return false;
|
282 |
return false;
|
283 |
|
283 |
|
284 |
// We create the dictionary by executing the aspell command:
|
284 |
// We create the dictionary by executing the aspell command:
|
285 |
// aspell --lang=[lang] create master [dictApath]
|
285 |
// aspell --lang=[lang] create master [dictApath]
|
286 |
ExecCmd aspell;
|
286 |
ExecCmd aspell;
|
287 |
list<string> args;
|
287 |
vector<string> args;
|
288 |
args.push_back(string("--lang=")+ m_lang);
|
288 |
args.push_back(string("--lang=")+ m_lang);
|
289 |
args.push_back("--encoding=utf-8");
|
289 |
args.push_back("--encoding=utf-8");
|
290 |
args.push_back("create");
|
290 |
args.push_back("create");
|
291 |
args.push_back("master");
|
291 |
args.push_back("master");
|
292 |
args.push_back(dicPath());
|
292 |
args.push_back(dicPath());
|