summaryrefslogtreecommitdiff
path: root/plugins/Msg_Export/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-08-28 18:21:12 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-08-28 18:21:12 +0300
commit7c70c24b8eeb214e18cc1b807d66af8a7c92da5c (patch)
treee318c2557587a0117345a1a81a75454bf2ee53f8 /plugins/Msg_Export/src
parent5a79be6d2b588c87fd733a5080d5a5b1d9268fcb (diff)
fixes #1553 (Msg_Export: buttons doesn't work)
Diffstat (limited to 'plugins/Msg_Export/src')
-rwxr-xr-xplugins/Msg_Export/src/options.cpp4
-rw-r--r--plugins/Msg_Export/src/version.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp
index bacd6a409c..8f5072c09e 100755
--- a/plugins/Msg_Export/src/options.cpp
+++ b/plugins/Msg_Export/src/options.cpp
@@ -210,14 +210,12 @@ void __cdecl exportContactsMessages(ExportDialogData *data)
class CBasicOptDlg : public CDlgBase
{
- CCtrlHyperlink urlHelp;
CCtrlButton btnBrowseDir, btnBrowseFile;
CCtrlCombo cmbExportDir, cmbDefaultFile, cmbTimeFormat, cmbFileViewer;
public:
CBasicOptDlg() :
CDlgBase(g_plugin, IDD_OPT_MSGEXPORT),
- urlHelp(this, IDC_OPEN_HELP, "https://miranda-ng.org/p/Msg_Export/"),
btnBrowseDir(this, IDC_EXPORT_DIR_BROWSE),
btnBrowseFile(this, IDC_FILE_VIEWER_BROWSE),
cmbExportDir(this, IDC_EXPORT_DIR),
@@ -413,10 +411,12 @@ class CContactsOptDlg : public CDlgBase
{
CCtrlButton btnExportAll, btnExportSel, btnUserDetails, btnAutoFileName, btnClearAll, btnSetDefault;
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),
btnClearAll(this, IDC_CLEAR_ALL),
btnExportAll(this, IDC_EXPORTALL),
diff --git a/plugins/Msg_Export/src/version.h b/plugins/Msg_Export/src/version.h
index 691a273201..2721e6962b 100644
--- a/plugins/Msg_Export/src/version.h
+++ b/plugins/Msg_Export/src/version.h
@@ -1,7 +1,7 @@
#define __MAJOR_VERSION 3
#define __MINOR_VERSION 1
#define __RELEASE_NUM 2
-#define __BUILD_NUM 2
+#define __BUILD_NUM 3
#include <stdver.h>