Changeset 93949 in vbox
- Timestamp:
- Feb 25, 2022 1:59:59 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/helpbrowser/UIHelpBrowserWidget.cpp
r93115 r93949 864 864 void UIHelpBrowserTab::sltAddressBarIndexChanged(int iIndex) 865 865 { 866 if (!m_pAddressBar &&iIndex >= m_pAddressBar->count())866 if (!m_pAddressBar || iIndex >= m_pAddressBar->count()) 867 867 return; 868 868 int iHistoryIndex = m_pAddressBar->itemData(iIndex).toInt(); … … 870 870 if (iHistoryIndex == 0) 871 871 return; 872 elseif (iHistoryIndex > 0)872 if (iHistoryIndex > 0) 873 873 for (int i = 0; i < iHistoryIndex; ++i) 874 874 m_pContentViewer->forward();
Note:
See TracChangeset
for help on using the changeset viewer.