diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-17 19:25:36 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-17 19:25:36 +0300 |
commit | 45e8cd4d903d4ea823f0ab4ca2e7afe27ddc514b (patch) | |
tree | 1b2e1c275f87170c029c6f0181a54984c435cc4a /plugins/FTPFileYM/src/stdafx.h | |
parent | 47eae603adab188624f17dab14318c1b1995f0ab (diff) |
FtpFile:
- fixes #1662 (FTPFile: Default account's names looks weird)
- code cleaning
- version bump
Diffstat (limited to 'plugins/FTPFileYM/src/stdafx.h')
-rw-r--r-- | plugins/FTPFileYM/src/stdafx.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/plugins/FTPFileYM/src/stdafx.h b/plugins/FTPFileYM/src/stdafx.h index 9f1a9c41a7..0752376744 100644 --- a/plugins/FTPFileYM/src/stdafx.h +++ b/plugins/FTPFileYM/src/stdafx.h @@ -64,13 +64,8 @@ using namespace std; #define FREE(X) if (X) { mir_free(X); X = NULL; }
#endif
-#ifdef _DEBUG
-#define _CRTDBG_MAP_ALLOC
-#define new DEBUG_CLIENTBLOCK
-#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
-#else
-#define DEBUG_CLIENTBLOCK
-#endif
+extern Manager *manDlg;
+extern ServerList ftpList;
#define MS_FTPFILE_CONTACTMENU "FTPFile/ContactMenu"
#define MS_FTPFILE_MAINMENU "FTPFile/MainMenu"
|