]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/html/help/help.cpp
added ability to build contrib samples
[wxWidgets.git] / samples / html / help / help.cpp
index 783cda08fdb517916f06d653ab50a3844932a3df..0e6ed46d888ebd9bd63c200f70da6e094dacb7ad 100644 (file)
 
       help.UseConfig(wxConfig::Get());
       bool ret;
-#if defined(__WXMAC__) && !defined(__DARWIN__)
-      ret = help.AddBook(wxT(":helpfiles:testing.hhp"));
-#else
       help.SetTempDir(wxT("."));
-      ret = help.AddBook(wxT("helpfiles/testing.hhp"));
-#endif
+      ret = help.AddBook(wxFileName(wxT("helpfiles/testing.hhp"), wxPATH_UNIX));
       if (! ret)
         wxMessageBox(wxT("Failed adding book helpfiles/testing.hhp"));
-#if defined(__WXMAC__) && !defined(__DARWIN__)
-      ret = help.AddBook(wxT(":helpfiles:another.hhp"));
-#else
-      ret = help.AddBook(wxT("helpfiles/another.hhp"));
-#endif
+      ret = help.AddBook(wxFileName(wxT("helpfiles/another.hhp"), wxPATH_UNIX));
       if (! ret)
         wxMessageBox(_("Failed adding book helpfiles/another.hhp"));
    }