diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-10 03:06:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-10 03:07:44 +0300 |
commit | 5c50beef4fca106a843e9370ed40e5ef9d60bac3 (patch) | |
tree | 46c74d648832114944dfb183d1a52d84baaca85c /src | |
parent | 0f67a984182336dac85b15e55cbe3bb11c29424a (diff) | |
download | plus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.tar.gz plus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.tar.bz2 plus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.tar.xz plus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.zip |
Add https support to link handlers.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/helpwindow.cpp | 2 | ||||
-rw-r--r-- | src/gui/updaterwindow.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/itemlinkhandler.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/helpwindow.cpp b/src/gui/helpwindow.cpp index d93472211..c035b2a24 100644 --- a/src/gui/helpwindow.cpp +++ b/src/gui/helpwindow.cpp @@ -88,7 +88,7 @@ void HelpWindow::action(const gcn::ActionEvent &event) void HelpWindow::handleLink(const std::string &link, gcn::MouseEvent *event A_UNUSED) { - if (!strStartWith(link, "http://")) + if (!strStartWith(link, "http://") && !strStartWith(link, "https://")) { std::string helpFile = link; loadHelp(helpFile); diff --git a/src/gui/updaterwindow.cpp b/src/gui/updaterwindow.cpp index f392a4b79..3c3dfac9e 100644 --- a/src/gui/updaterwindow.cpp +++ b/src/gui/updaterwindow.cpp @@ -847,6 +847,6 @@ bool UpdaterWindow::validateFile(const std::string &filePath, void UpdaterWindow::handleLink(const std::string &link, gcn::MouseEvent *event A_UNUSED) { - if (strStartWith(link, "http://")) + if (strStartWith(link, "http://") || strStartWith(link, "https://")) openBrowser(link); } diff --git a/src/gui/widgets/itemlinkhandler.cpp b/src/gui/widgets/itemlinkhandler.cpp index d9c7ca838..24b487f53 100644 --- a/src/gui/widgets/itemlinkhandler.cpp +++ b/src/gui/widgets/itemlinkhandler.cpp @@ -64,7 +64,7 @@ ItemLinkHandler::~ItemLinkHandler() void ItemLinkHandler::handleLink(const std::string &link, gcn::MouseEvent *event) { - if (!strStartWith(link, "http://")) + if (!strStartWith(link, "http://") && !strStartWith(link, "https://")) { if (!mItemPopup) return; |