diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-12-25 08:56:14 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-12-25 08:56:14 +0000 |
commit | 5da4cd56a1a5ea4f2e745bde855f604c52ef36da (patch) | |
tree | 4c97effb1a354a39ebed9056822897b30e128e06 /plugins/SendScreenshotPlus/src | |
parent | 65db0e9570df2d309d247829083c3a1bda65ce27 (diff) |
SendSS: compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@11623 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Main.cpp | 3 | ||||
-rw-r--r-- | plugins/SendScreenshotPlus/src/global.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp index 4088f562f1..32da90c20a 100644 --- a/plugins/SendScreenshotPlus/src/Main.cpp +++ b/plugins/SendScreenshotPlus/src/Main.cpp @@ -26,8 +26,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "Main.h" -#include <m_hotkeys.h> +#include "global.h" // Prototypes /////////////////////////////////////////////////////////////////////////// HINSTANCE g_hSendSS; diff --git a/plugins/SendScreenshotPlus/src/global.h b/plugins/SendScreenshotPlus/src/global.h index 112939c454..0a3ae61c72 100644 --- a/plugins/SendScreenshotPlus/src/global.h +++ b/plugins/SendScreenshotPlus/src/global.h @@ -62,6 +62,7 @@ using namespace std; #include <m_clist.h> #include <m_contacts.h> #include <m_database.h> +#include <m_hotkeys.h> #include <m_imgsrvc.h> #include <m_langpack.h> #include <m_netlib.h> @@ -77,6 +78,7 @@ using namespace std; #include <m_userinfoex.h> #include <m_dropbox.h> +#include "Main.h" #include "mir_string.h" #include "ctrl_button.h" #include "dlg_msgbox.h" |