- Timestamp:
- Oct 27, 2020 9:56:45 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/helpbrowser/UIHelpBrowserWidget.cpp
r86718 r86720 251 251 void UIHelpBrowserWidget::loadOptions() 252 252 { 253 #if defined(RT_OS_LINUX) && defined(VBOX_WITH_DOCS_QHELP) 253 254 if (m_pContentViewer && m_pHelpEngine) 254 255 { … … 264 265 } 265 266 } 267 #endif 266 268 } 267 269 … … 334 336 QUrl UIHelpBrowserWidget::findIndexHtml() const 335 337 { 338 #if defined(RT_OS_LINUX) && defined(VBOX_WITH_DOCS_QHELP) 336 339 QList<QUrl> files = m_pHelpEngine->files(m_pHelpEngine->namespaceName(m_strHelpFilePath), QStringList()); 337 340 int iIndex = -1; … … 360 363 return files[iIndex]; 361 364 return QUrl(); 365 #else 366 return QUrl(); 367 #endif 362 368 } 363 369
Note:
See TracChangeset
for help on using the changeset viewer.