diff options
| author | Szymon Tokarz <wsx22@o2.pl> | 2014-05-03 22:21:50 +0000 | 
|---|---|---|
| committer | Szymon Tokarz <wsx22@o2.pl> | 2014-05-03 22:21:50 +0000 | 
| commit | 50824b8b6ab836113370a11ef3b3c3419aa1ab6c (patch) | |
| tree | b755bc9376e976be21513539b8ce2d01e28a9d75 /plugins/LotusNotify | |
| parent | dd9c282092856c0a577b9136e7463a3d9a3aa0d0 (diff) | |
LotusNotify
do not longer pass Miranda args to Lotus init function
git-svn-id: http://svn.miranda-ng.org/main/trunk@9122 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/LotusNotify')
| -rw-r--r-- | plugins/LotusNotify/src/LotusNotify.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/LotusNotify/src/LotusNotify.cpp b/plugins/LotusNotify/src/LotusNotify.cpp index ae81d15881..7b7dbd1e23 100644 --- a/plugins/LotusNotify/src/LotusNotify.cpp +++ b/plugins/LotusNotify/src/LotusNotify.cpp @@ -1535,7 +1535,7 @@ static int modulesloaded(WPARAM wParam, LPARAM lParam)  			log(L"Initializing Lotus");
 -			if((NotesInitExtended1) (__argc, __argv)){
 +			if((NotesInitExtended1) (0, NULL)){
  				//initialize lotus    //TODO: Lotus can terminate miranda process here with msgbox "Shared Memory from a previous Notes/Domino run has been detected, this process will exit now"
  				startuperror += 4;
 @@ -1716,7 +1716,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD dwReason, LPVOID lpvReserved)  		Plugin_Terminated = false;
  		hInst = hinstDLL;
  		break;
 -    case DLL_PROCESS_DETACH:
 +	case DLL_PROCESS_DETACH:
  		/* Deregister extension manager callbacks */
  		Plugin_Terminated = true;
  		ExtClear();
  | 
