diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-01 08:22:35 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-01 08:22:35 +0000 |
commit | 9a0784912d37f7f6d7413c585b7e2e039ba245b9 (patch) | |
tree | d17e704242ff1ff63a29cb44dfce309b7618f599 /plugins/MobileState/src/main.cpp | |
parent | 936f91def4271c0ae4e9bb0dad9046ae24b61150 (diff) |
removed not used headers
git-svn-id: http://svn.miranda-ng.org/main/trunk@3814 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MobileState/src/main.cpp')
-rw-r--r-- | plugins/MobileState/src/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/MobileState/src/main.cpp b/plugins/MobileState/src/main.cpp index 739877cfa3..bb2d388704 100644 --- a/plugins/MobileState/src/main.cpp +++ b/plugins/MobileState/src/main.cpp @@ -18,7 +18,6 @@ */
#include "commonheaders.h"
-#include "clients.h"
HINSTANCE g_hInst;
int hLangpack;
@@ -35,7 +34,7 @@ PLUGININFOEX pluginInfo = { __AUTHORWEB,
UNICODE_AWARE,
// {F0BA32D0-CD07-4A9C-926B-5A1FF21C3C10}
- {0xf0ba32d0, 0xcd07, 0x4a9c, { 0x92, 0x6b, 0x5a, 0x1f, 0xf2, 0x1c, 0x3c, 0x10 }}
+ {0xf0ba32d0, 0xcd07, 0x4a9c, {0x92, 0x6b, 0x5a, 0x1f, 0xf2, 0x1c, 0x3c, 0x10}}
};
static IconItem icon = { LPGEN("Mobile State"), "mobile_icon", IDI_MOBILE };
@@ -60,7 +59,7 @@ bool hasMobileClient(HANDLE hContact, LPARAM lParam) TCHAR *client = _tcslwr(NEWTSTR_ALLOCA(dbv.ptszVal));
db_free(&dbv);
- for (size_t i=0; i<(sizeof(clients) / sizeof(TCHAR*)); i++)
+ for (size_t i = 0; i < SIZEOF(clients); i++)
if (_tcsstr(client, clients[i]))
return true;
}
|