Example #1
0
void GetActualAspellPath (TCHAR *&Path, TCHAR *&PathArg)
{
  if (!PathArg || !*PathArg)
  {
    GetDefaultAspellPath (Path);
  }
  else
  {
    SetString (Path, PathArg);
  }
}
Example #2
0
void GetActualAspellPath(wchar_t *&Path, const wchar_t *PathArg)
{
  if (!PathArg || !*PathArg)
  {
    GetDefaultAspellPath (Path);
  }
  else
  {
    setString (Path, PathArg);
  }
}