git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28707
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool FortyApp::OnInit()
{
bool largecards = false;
bool FortyApp::OnInit()
{
bool largecards = false;
+#ifndef __WXWINCE__
+ m_helpFile = wxGetCwd() + wxFILE_SEP_PATH + wxT("about.htm");
+ if (!wxFileExists(m_helpFile))
+#endif
+ {
+ m_helpFile = wxPathOnly(argv[0]) + wxFILE_SEP_PATH + wxT("about.htm");
+ }
FortyFrame::Help(wxCommandEvent& event)
{
#if wxUSE_HTML
FortyFrame::Help(wxCommandEvent& event)
{
#if wxUSE_HTML
- wxString htmlFile = wxGetApp().GetDir() + wxFILE_SEP_PATH + wxT("about.htm");
- if (wxFileExists(htmlFile))
+ if (wxFileExists(wxGetApp().GetHelpFile()))
{
FortyAboutDialog dialog(this, wxID_ANY, wxT("Forty Thieves Instructions"));
if (dialog.ShowModal() == wxID_OK)
{
FortyAboutDialog dialog(this, wxID_ANY, wxT("Forty Thieves Instructions"));
if (dialog.ShowModal() == wxID_OK)
{
#if wxUSE_HTML
wxString htmlText;
{
#if wxUSE_HTML
wxString htmlText;
- wxString htmlFile = wxGetApp().GetDir() + wxFILE_SEP_PATH + wxT("about.htm");
+ wxString htmlFile = wxGetApp().GetHelpFile();
{
wxTextFile file(htmlFile);
{
wxTextFile file(htmlFile);
static const wxColour& BackgroundColour();
static const wxColour& TextColour();
static const wxBrush& BackgroundBrush();
static const wxColour& BackgroundColour();
static const wxColour& TextColour();
static const wxBrush& BackgroundBrush();
- const wxString& GetDir() const { return m_dir; }
+ const wxString& GetHelpFile() const { return m_helpFile; }
private:
static wxColour* m_backgroundColour;
static wxColour* m_textColour;
static wxBrush* m_backgroundBrush;
private:
static wxColour* m_backgroundColour;
static wxColour* m_textColour;
static wxBrush* m_backgroundBrush;