forked from qt-creator/qt-creator
Help: Rename handleHelpRequest to showHelpUrl
Since that is what it does. Change-Id: I13ffe21cdb625a0df1313f2ff09bf84196f08768 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
@@ -96,15 +96,15 @@ QByteArray fileData(const QUrl &url)
|
||||
return checkInstance() ? m_instance->fileData(url) : QByteArray();
|
||||
}
|
||||
|
||||
void handleHelpRequest(const QUrl &url, HelpManager::HelpViewerLocation location)
|
||||
void showHelpUrl(const QUrl &url, HelpManager::HelpViewerLocation location)
|
||||
{
|
||||
if (checkInstance())
|
||||
m_instance->handleHelpRequest(url, location);
|
||||
m_instance->showHelpUrl(url, location);
|
||||
}
|
||||
|
||||
void handleHelpRequest(const QString &url, HelpViewerLocation location)
|
||||
void showHelpUrl(const QString &url, HelpViewerLocation location)
|
||||
{
|
||||
handleHelpRequest(QUrl(url), location);
|
||||
showHelpUrl(QUrl(url), location);
|
||||
}
|
||||
|
||||
} // HelpManager
|
||||
|
||||
Reference in New Issue
Block a user