Fix split mode after last change for welcome page examples.

We need to append "?view=split"to force the split mode check. Make the
check more readable in viewerForContextMode.
This commit is contained in:
kh1
2010-03-10 18:39:46 +01:00
parent 4e7bbbdaaf
commit 0ec23fefd1
2 changed files with 7 additions and 12 deletions

View File

@@ -272,7 +272,7 @@ void GettingStartedWelcomePageWidget::slotOpenContextHelpPage(const QString& url
Help::HelpManager *helpManager
= ExtensionSystem::PluginManager::instance()->getObject<Help::HelpManager>();
Q_ASSERT(helpManager);
helpManager->handleHelpRequest(url);
helpManager->handleHelpRequest(url % QLatin1String("?view=split"));
}
void GettingStartedWelcomePageWidget::slotNextTip()