summaryrefslogtreecommitdiff
path: root/src/mir_app
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-05-25 22:55:35 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-05-25 22:55:35 +0300
commit1baa80632f0084ce847e63aadad898a85c62b196 (patch)
treefaaeec5b22c3bc243b05f5714d065209ea584ce3 /src/mir_app
parentfb86c5eb2846957a6e87ac5e0d92bfe32a8e554b (diff)
fixes #1377 ("Options -> Plugins -> Download more plugins" opens Miranda folder instead of website)
Diffstat (limited to 'src/mir_app')
-rw-r--r--src/mir_app/src/pluginopts.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_app/src/pluginopts.cpp b/src/mir_app/src/pluginopts.cpp
index 8005898105..7358667274 100644
--- a/src/mir_app/src/pluginopts.cpp
+++ b/src/mir_app/src/pluginopts.cpp
@@ -236,8 +236,8 @@ class CPluginOptDlg : public CDlgBase
public:
CPluginOptDlg() :
CDlgBase(g_plugin, IDD_OPT_PLUGINS),
- m_link(this, IDC_GETMOREPLUGINS),
- m_plugUrl(this, IDC_PLUGINURL, "https://miranda-ng.org/downloads/"),
+ m_link(this, IDC_GETMOREPLUGINS, "https://miranda-ng.org/downloads/"),
+ m_plugUrl(this, IDC_PLUGINURL),
m_author(this, IDC_PLUGINAUTHOR),
m_plugPid(this, IDC_PLUGINPID),
m_plugInfo(this, IDC_PLUGINLONGINFO),