You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "helpviewer.hpp"
|
|
|
|
#include <QString>
|
|
#include <QDesktopServices>
|
|
#include <QUrl>
|
|
|
|
void Misc::HelpViewer::openHelp(const char* url)
|
|
{
|
|
QString link {OPENMW_DOC_BASEURL};
|
|
link.append(url);
|
|
QDesktopServices::openUrl(QUrl(link));
|
|
}
|