diff options
Diffstat (limited to 'plugins/IEHistory')
-rw-r--r-- | plugins/IEHistory/src/IEHistory.cpp | 4 | ||||
-rw-r--r-- | plugins/IEHistory/src/dlgHandlers.cpp | 14 | ||||
-rw-r--r-- | plugins/IEHistory/src/events.cpp | 2 | ||||
-rw-r--r-- | plugins/IEHistory/src/services.cpp | 2 | ||||
-rw-r--r-- | plugins/IEHistory/src/stdafx.h | 7 |
5 files changed, 9 insertions, 20 deletions
diff --git a/plugins/IEHistory/src/IEHistory.cpp b/plugins/IEHistory/src/IEHistory.cpp index 47e54052ec..ed4cca5b49 100644 --- a/plugins/IEHistory/src/IEHistory.cpp +++ b/plugins/IEHistory/src/IEHistory.cpp @@ -43,7 +43,7 @@ PLUGININFOEX pluginInfo = { { 0x2f093b88, 0xf389, 0x44f1, { 0x9e, 0x2a, 0x37, 0xc2, 0x91, 0x94, 0x20, 0x3a } } }; -extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion) +extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD) { return &pluginInfo; } @@ -100,7 +100,7 @@ extern "C" int __declspec(dllexport) Unload() return 0; } -BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID) { hInstance = hinstDLL; if (fdwReason == DLL_PROCESS_ATTACH) { diff --git a/plugins/IEHistory/src/dlgHandlers.cpp b/plugins/IEHistory/src/dlgHandlers.cpp index a5694d933f..418ae16b9a 100644 --- a/plugins/IEHistory/src/dlgHandlers.cpp +++ b/plugins/IEHistory/src/dlgHandlers.cpp @@ -457,19 +457,13 @@ INT_PTR CALLBACK HistoryDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPara break;
case IDC_PREV:
- {
- int finished = LoadPrev(hWnd);
- //EnableWindow(GetDlgItem(hWnd, IDC_PREV), !finished);
- //EnableWindow(GetDlgItem(hWnd, IDC_NEXT), TRUE);
+ LoadPrev(hWnd);
break;
- }
+
case IDC_NEXT:
- {
- int finished = LoadNext(hWnd);
- //EnableWindow(GetDlgItem(hWnd, IDC_NEXT), !finished);
- //EnableWindow(GetDlgItem(hWnd, IDC_PREV), TRUE);
+ LoadNext(hWnd);
break;
- }
+
case IDC_SEARCH:
HWND hSearch = CreateDialog(hInstance, MAKEINTRESOURCE(IDD_SEARCH), hWnd, SearchDlgProc);
if (hSearch == NULL) {
diff --git a/plugins/IEHistory/src/events.cpp b/plugins/IEHistory/src/events.cpp index 16745475a8..f9cc9c4c56 100644 --- a/plugins/IEHistory/src/events.cpp +++ b/plugins/IEHistory/src/events.cpp @@ -35,7 +35,7 @@ int UnhookEvents() return 0; } -int OnOptionsInitialize(WPARAM wParam, LPARAM lParam) +int OnOptionsInitialize(WPARAM wParam, LPARAM) { OPTIONSDIALOGPAGE odp = { 0 }; odp.position = 100000000; diff --git a/plugins/IEHistory/src/services.cpp b/plugins/IEHistory/src/services.cpp index 9ad611dd62..a907a4e218 100644 --- a/plugins/IEHistory/src/services.cpp +++ b/plugins/IEHistory/src/services.cpp @@ -35,7 +35,7 @@ int DestroyServices() return 0; } -INT_PTR ShowContactHistoryService(WPARAM wParam, LPARAM lParam) +INT_PTR ShowContactHistoryService(WPARAM wParam, LPARAM) { Log("%s", "Entering function " __FUNCTION__); HWND historyDlg; diff --git a/plugins/IEHistory/src/stdafx.h b/plugins/IEHistory/src/stdafx.h index ad8cfce450..72e210060d 100644 --- a/plugins/IEHistory/src/stdafx.h +++ b/plugins/IEHistory/src/stdafx.h @@ -56,12 +56,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "events.h" #include "dlgHandlers.h" -static FILE* fopen_s2(const char* file,const char* mode){ - FILE* ret=NULL; fopen_s(&ret,file,mode); - return ret; -} -#define fopen fopen_s2 -#define mir_strcat strcat_s +#define _strcat strcat_s #define _vsnprintf _vsnprintf_s #define snprintf _snprintf_s #define snwprintf _snwprintf_s |