Changeset 86707 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 26, 2020 1:36:51 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r86697 r86707 232 232 $(if $(VBOX_GUI_WITH_CUSTOMIZATIONS1),VBOX_GUI_WITH_CUSTOMIZATIONS1) \ 233 233 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE) \ 234 $(if $(VBOX_WITH_DOCS_QHELP),VBOX_WITH_DOCS_QHELP) \ 234 235 $(if $(VBOX_WITH_SDS),VBOX_WITH_SDS,) 235 236 ifdef VBOX_WITH_DEBUGGER_GUI -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r86672 r86707 3200 3200 void UIMessageCenter::sltShowUserManual(const QString &strLocation) 3201 3201 { 3202 Q_UNUSED(strLocation); 3202 3203 #if defined (VBOX_WS_WIN) 3203 3204 HtmlHelp(GetDesktopWindow(), strLocation.utf16(), HH_DISPLAY_TOPIC, NULL); 3204 3205 #elif defined (VBOX_WS_X11) 3205 # if !defined(VBOX_OSE) && defined(VBOX_WITH_KCHMVIEWER) 3206 #if defined(VBOX_WITH_DOCS_QHELP) 3207 3206 3208 char szViewerPath[RTPATH_MAX]; 3207 3209 int rc; … … 3209 3211 AssertRC(rc); 3210 3212 QProcess::startDetached(QString(szViewerPath) + "/kchmviewer", QStringList(strLocation)); 3211 # else /* #if !defined(VBOX_OSE) && defined(VBOX_WITH_KCHMVIEWER) */ 3213 3212 3214 /* instead of viewing the pdf manual show qtHelp one. This is soon to be default in all platforms. */ 3213 3215 showHelpBrowser(strLocation); 3214 # endif /* #if defined(VBOX_ OSE) || !defined(VBOX_WITH_KCHMVIEWER) */3216 # endif /* #if defined(VBOX_WITH_DOCS_QHELP) */ 3215 3217 #elif defined (VBOX_WS_MAC) 3216 3218 uiCommon().openURL("file://" + strLocation);
Note:
See TracChangeset
for help on using the changeset viewer.