Ticket #32973: patch-src-FXTerminal.cpp.diff
File patch-src-FXTerminal.cpp.diff, 1.0 KB (added by mbrethen, 13 years ago) |
---|
-
csl/fox/src/FXTerminal.cpp
old new 1971 1971 // Windows case. 1972 1972 #if defined MACINTOSH && defined MAC_FRAMEWORK 1973 1973 char helpFile[256]; 1974 sprintf(helpFile, "%s.doc/ index.html", fwin_full_program_name);1974 sprintf(helpFile, "%s.doc/manual-pdf.html", fwin_full_program_name); 1975 1975 if (CGDisplayIsActive(CGMainDisplayID()) != 1) 1976 1976 { FXMessageBox::error(this, 1977 1977 MBOX_OK, "Manual Browser Launch Needed", … … 2016 2016 if (preferred == NULL || *preferred == 0) 2017 2017 preferred = selectBrowser(reg, "mozilla"); 2018 2018 char helpFile[256]; 2019 sprintf(helpFile, "file://%s/%s.doc/ index.html", programDir, programName);2019 sprintf(helpFile, "file://%s/%s.doc/manual-pdf.html", programDir, programName); 2020 2020 // For non-windows the browsers I might imagine include 2021 2021 // netscape, mozilla, opera, firebird, konqueror, galeon, ... 2022 2022 // I will try these in turn. It is probably a politically delicate issue