]> git.saurik.com Git - wxWidgets.git/commitdiff
added new calling conventions for mac
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 24 Aug 2001 20:44:02 +0000 (20:44 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 24 Aug 2001 20:44:02 +0000 (20:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11464 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/html/help/help.cpp
samples/html/help/makemac6.mcp [new file with mode: 0644]

index 4c17088e67ae417560723343acbd45aa44449c37..457fb96e0fb19e0fa228e88bbb52cbcd29fa5111 100644 (file)
 
       help.UseConfig(wxConfig::Get());
       bool ret;
+#ifdef __WXMAC__
+      ret = help.AddBook(":helpfiles:testing.hhp");
+#else
       help.SetTempDir(".");
       ret = help.AddBook("helpfiles/testing.hhp");
+#endif
       if (! ret)
          wxMessageBox("Failed adding book helpfiles/testing.hhp");
+#ifdef __WXMAC__
+      ret = help.AddBook(":helpfiles:another.hhp");
+#else
       ret = help.AddBook("helpfiles/another.hhp");
+#endif
       if (! ret)
          wxMessageBox("Failed adding book helpfiles/another.hhp");
    }
diff --git a/samples/html/help/makemac6.mcp b/samples/html/help/makemac6.mcp
new file mode 100644 (file)
index 0000000..4b052df
Binary files /dev/null and b/samples/html/help/makemac6.mcp differ