diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-09-16 20:08:36 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-09-16 20:08:36 +0000 |
commit | 372c883aef8380c16ebfc70a1382263dd723e34d (patch) | |
tree | 95f783248b6bbab614d8bbfdee187f832538c553 /plugins/MirFox/src | |
parent | 243a89c1d79b59780ddac84465d393e182b3ea44 (diff) |
typos
git-svn-id: http://svn.miranda-ng.org/main/trunk@6098 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirFox/src')
-rw-r--r-- | plugins/MirFox/src/MirandaInterface.cpp | 10 | ||||
-rw-r--r-- | plugins/MirFox/src/MirfoxMiranda.cpp | 2 |
2 files changed, 1 insertions, 11 deletions
diff --git a/plugins/MirFox/src/MirandaInterface.cpp b/plugins/MirFox/src/MirandaInterface.cpp index 066ce93299..8bce0ea7fa 100644 --- a/plugins/MirFox/src/MirandaInterface.cpp +++ b/plugins/MirFox/src/MirandaInterface.cpp @@ -3,9 +3,6 @@ #include "mirandaInterface.h"
-
-
-
//Miranda - handle from DllMain
HINSTANCE hInst;
@@ -19,14 +16,9 @@ HANDLE hProtoAck; HANDLE hPopupNotify;
HANDLE hPopupError;
-
-
-
//main add-on's object
CMirfoxMiranda mirfoxMiranda;
-
-
PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
@@ -48,8 +40,6 @@ extern "C" BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpv }
-int lowVersionUserAnswer = -1;
-
extern "C" __declspec (dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) {
return &pluginInfo;
}
diff --git a/plugins/MirFox/src/MirfoxMiranda.cpp b/plugins/MirFox/src/MirfoxMiranda.cpp index 518431672c..64977b2638 100644 --- a/plugins/MirFox/src/MirfoxMiranda.cpp +++ b/plugins/MirFox/src/MirfoxMiranda.cpp @@ -109,7 +109,7 @@ void CMirfoxMiranda::initializeSharedMemoryData(MirfoxData& mirfoxData, SharedMe MessageBox(NULL, TranslateT("This MirFox (Miranda) plugin is too old. Please update it."), TranslateT("MirFox (Miranda) - Error"), MB_OK | MB_ICONWARNING );
}
if (result.errorCode == -4){ //existing csm version is too low -> sb is too old
- MessageBox(NULL, TranslateT("This MirFox (Miranda) plugin can not start beacouse some other MirFox component is too old. Please, check and update your MirFox components."), TranslateT("MirFox (Miranda) - Error"), MB_OK | MB_ICONWARNING );
+ MessageBox(NULL, TranslateT("This MirFox (Miranda) plugin can not start because some other MirFox component is too old. Please, check and update your MirFox components."), TranslateT("MirFox (Miranda) - Error"), MB_OK | MB_ICONWARNING );
}
mirfoxData.setPluginState(MFENUM_PLUGIN_STATE_ERROR);
return;
|