diff options
author | dartraiden <wowemuh@gmail.com> | 2024-05-16 22:23:38 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-05-16 22:23:38 +0300 |
commit | 0cdf3208770436c186fbed2c035dba5af79d394f (patch) | |
tree | bb30c93c5ae169b0c8af386d1efcacaf81d77659 /plugins/Msg_Export/src | |
parent | a8f00a9c70de2fafbba97941fc65879b3863db6f (diff) |
Msg_Export: remove "Help" button (fixes #4420)
Diffstat (limited to 'plugins/Msg_Export/src')
-rw-r--r-- | plugins/Msg_Export/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/Msg_Export/src/resource.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index ef1d7ff71c..e56c619679 100644 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -363,12 +363,10 @@ public: class CContactsOptDlg : public CDlgBase
{
CCtrlListView listUsers;
- CCtrlHyperlink urlHelp;
public:
CContactsOptDlg() :
CDlgBase(g_plugin, IDD_OPT_CONTACTS),
- urlHelp(this, IDC_OPEN_HELP, "https://miranda-ng.org/p/Msg_Export"),
listUsers(this, IDC_MAP_USER_LIST)
{
listUsers.OnKeyDown = Callback(this, &CContactsOptDlg::list_KeyDown);
diff --git a/plugins/Msg_Export/src/resource.h b/plugins/Msg_Export/src/resource.h index 194585b410..07d15a3b87 100644 --- a/plugins/Msg_Export/src/resource.h +++ b/plugins/Msg_Export/src/resource.h @@ -18,7 +18,6 @@ #define IDC_MAP_USER_LIST 1034
#define IDC_EXPORT_PROGRESS 1037
#define IDC_EXP_ALL_STATUS 1039
-#define IDC_OPEN_HELP 1041
#define IDC_DEFAULT_FILE 1043
#define IDC_RICHEDIT 1046
#define IDC_USE_INTERNAL_VIEWER 1048
|