- Timestamp:
- Apr 20, 2007 8:32:07 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r2240 r2257 934 934 void VBoxSelectorWnd::showHelpContents() 935 935 { 936 #ifndef VBOX_OSE 936 937 #if defined (Q_WS_WIN32) 937 938 QString fullHelpFilePath = qApp->applicationDirPath() + "/VirtualBox.chm"; … … 940 941 HH_DISPLAY_TOPIC, NULL); 941 942 #elif defined (Q_WS_X11) 942 # ifndef VBOX_OSE943 943 QString fullProgPath = qApp->applicationDirPath(); 944 944 QProcess kchmViewer (fullProgPath + "/kchmviewer"); 945 945 kchmViewer.addArgument (fullProgPath + "/VirtualBox.chm"); 946 946 kchmViewer.launch (""); 947 # endif 947 #elif defined (Q_WS_MAC) 948 QProcess openApp (QString("/usr/bin/open")); 949 openApp.addArgument (qApp->applicationDirPath() + "/UserManual.pdf"); 950 openApp.launch (""); 948 951 #endif 952 #endif /* VBOX_OSE */ 949 953 } 950 954
Note:
See TracChangeset
for help on using the changeset viewer.