diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-03 16:05:14 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-03 16:05:14 +0000 |
commit | 954ed085481b2e878959e442772ecc5978a1d8d8 (patch) | |
tree | 3977b170d710ba459b6b5fe05b1a85a9b254f96b /plugins/Popup/src/services.cpp | |
parent | 3cc4e30e93e129328339c4a91630a9a651be38a8 (diff) |
removed not used headers
git-svn-id: http://svn.miranda-ng.org/main/trunk@3875 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Popup/src/services.cpp')
-rw-r--r-- | plugins/Popup/src/services.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Popup/src/services.cpp b/plugins/Popup/src/services.cpp index 858f990aae..e085c1f4ad 100644 --- a/plugins/Popup/src/services.cpp +++ b/plugins/Popup/src/services.cpp @@ -257,11 +257,11 @@ INT_PTR PopUp_AddPopUp2(WPARAM wParam, LPARAM lParam) if (!PopUpOptions.ModuleIsEnabled)
return -1;
#ifdef _DEBUG
- itoa(PopUpOptions.DisableWhenFullscreen,temp,10);
+ _itoa(PopUpOptions.DisableWhenFullscreen,temp,10);
OutputDebugStringA("PopUpOptions.DisableWhenFullscreen: \t");
OutputDebugStringA(temp);
OutputDebugStringA("\n");
- itoa(bShowMode,temp,10);
+ _itoa(bShowMode,temp,10);
OutputDebugStringA("bShowMode: \t");
OutputDebugStringA(temp);
OutputDebugStringA("\n");
|