Updated for 1.2.0.4
This commit is contained in:
parent
0f47c03197
commit
7b8334f903
|
@ -209,9 +209,9 @@ bool HouseStyle::createReport()
|
|||
try {
|
||||
if (type == HS_TYPE_SPELL)
|
||||
spellcheck = new WrapAspell(
|
||||
ruleFile, // carries lang information
|
||||
ruleFile // carries lang information
|
||||
#ifdef __WXMSW__
|
||||
aspellDataPath,
|
||||
, aspellDataPath,
|
||||
aspellDictPath
|
||||
#endif
|
||||
);
|
||||
|
|
|
@ -29,9 +29,9 @@ class WrapAspell
|
|||
{
|
||||
public:
|
||||
WrapAspell (
|
||||
std::string lang,// = "en_US",
|
||||
std::string lang// = "en_US",
|
||||
#ifdef __WXMSW__
|
||||
const std::string& aspellDataPathParameter,
|
||||
, const std::string& aspellDataPathParameter,
|
||||
const std::string& aspellDictPath
|
||||
#endif
|
||||
);
|
||||
|
|
|
@ -1207,6 +1207,7 @@ void MyFrame::OnAbout ( wxCommandEvent& WXUNUSED ( event ) )
|
|||
info.AddDeveloper ( _ ( "Gerald Schmidt (development) <gnschmidt at users.sourceforge.net>" ) );
|
||||
info.AddDeveloper ( _ ( "Matt Smigielski (testing) <alectrus at users.sourceforge.net>" ) );
|
||||
info.AddDeveloper ( _ ( "Justin Dearing (development) <j-pimp at users.sourceforge.net>" ) );
|
||||
info.AddDeveloper ( _ ( "Kev James (development) <kmjames at users.sourceforge.net>" ) );
|
||||
info.AddTranslator ( _ ( "Viliam Búr (Slovak) <viliam at bur.sk>" ) );
|
||||
info.AddTranslator ( _ ( "David Håsäther (Swedish) <hasather at gmail.com>" ) );
|
||||
info.AddTranslator ( _ ( "François Badier (French) <frabad at gmail.com>" ) );
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#endif
|
||||
#define ABOUT_COPYRIGHT _("Copyright © 2005-2008 Gerald Schmidt <gnschmidt@users.sourceforge.net>")
|
||||
#define ABOUT_DESCRIPTION _("\nXML Copy Editor is free software released under the GNU\nGeneral Public License.\n\nMany thanks are due to Tim van Niekerk, Matt Smigielski,\nDavid Scholl, Jan Merka, Marcus Bingenheimer, Roberto\nRosselli Del Turco, Ken Zalewski, C.J. Meidlinger,\nThomas Zajic, Viliam Búr, David Håsäther, François\nBadier, Thomas Wenzel, Roger Sperberg, SHiNE CsyFeK,\nHSU PICHAN, YANG SHUFUN, CHENG PAULIAN,\nCHUANG KUO-PING, Justin Dearing, Serhij Dubyk,\nAntonio Angelo, Jose Luis Rivero, Siarhei Kuchuk\nand Ian Abbott.")
|
||||
#define ABOUT_DESCRIPTION _("\nXML Copy Editor is free software released under the GNU\nGeneral Public License.\n\nMany thanks are due to Tim van Niekerk, Matt Smigielski,\nDavid Scholl, Jan Merka, Marcus Bingenheimer, Roberto\nRosselli Del Turco, Ken Zalewski, C.J. Meidlinger,\nThomas Zajic, Viliam Búr, David Håsäther, François\nBadier, Thomas Wenzel, Roger Sperberg, SHiNE CsyFeK,\nHSU PICHAN, YANG SHUFUN, CHENG PAULIAN,\nCHUANG KUO-PING, Justin Dearing, Serhij Dubyk,\nAntonio Angelo, Jose Luis Rivero, Siarhei Kuchuk,\nIan Abbott and Kev James.")
|
||||
#define ABOUT_LICENSE _T(\
|
||||
"This program is free software; you can redistribute it\n"\
|
||||
"and/or modify it under the terms of the GNU General Public\n"\
|
||||
|
|
Loading…
Reference in New Issue