diff options
-rwxr-xr-x | plugins/Msg_Export/src/options.cpp | 4 | ||||
-rw-r--r-- | plugins/Msg_Export/src/version.h | 2 |
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> |