mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
19 lines
493 B
C++
19 lines
493 B
C++
/*
|
|
* GDevelop IDE
|
|
* Copyright 2008-2015 Florian Rival (Florian.Rival@gmail.com). All rights reserved.
|
|
* This project is released under the GNU General Public License version 3.
|
|
*/
|
|
#include "HelpProvider.h"
|
|
#include <wx/utils.h>
|
|
#include <wx/mimetype.h>
|
|
|
|
HelpProvider * HelpProvider::_singleton = NULL;
|
|
|
|
void HelpProvider::OpenLink(wxString link)
|
|
{
|
|
if (link.StartsWith("/"))
|
|
link = _("http://wiki.compilgames.net/doku.php") + link;
|
|
|
|
wxLaunchDefaultBrowser(link);
|
|
}
|