for win32, look for dicts locally.

This commit is contained in:
ehouse 2008-06-07 13:46:27 +00:00
parent a29ab639fc
commit fa1f65283f

View file

@ -628,7 +628,11 @@ getDictDir( wchar_t* buf )
{
/* BOOL found = SHGetKnownFolderPath(HWND,LPWSTR,int,BOOL); */
// temporary hack until I figure SHGetKnownFolderPath out
#ifdef _WIN32_WCE
wsprintf( buf, L"\\Program Files\\Crosswords" );
#else
wsprintf( buf, L"." );
#endif
return XP_TRUE;
}