summaryrefslogtreecommitdiff
path: root/plugins/SmileyAdd/src/main.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-09-15 14:44:19 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-09-15 14:44:19 +0000
commite41f68f90cae89a9fff600af8a110979d8e2e97a (patch)
tree3b4d2ab759f3c9664e3d6c8609e1151a7d1698e9 /plugins/SmileyAdd/src/main.cpp
parent7477933ef5a4ad1609c03efbcbc31ed391155f54 (diff)
address logging for smileys - canceled
git-svn-id: http://svn.miranda-ng.org/main/trunk@6076 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SmileyAdd/src/main.cpp')
-rw-r--r--plugins/SmileyAdd/src/main.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/SmileyAdd/src/main.cpp b/plugins/SmileyAdd/src/main.cpp
index b9ac55fb91..f8ee1407a1 100644
--- a/plugins/SmileyAdd/src/main.cpp
+++ b/plugins/SmileyAdd/src/main.cpp
@@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//globals
HINSTANCE g_hInst;
-HANDLE hEvent1, hLogger;
+HANDLE hEvent1;
HGENMENU hContactMenuItem;
char* metaProtoName;
@@ -89,6 +89,7 @@ extern "C" __declspec(dllexport) int Load(void)
if (ServiceExists(MS_SMILEYADD_REPLACESMILEYS)) {
ReportError(TranslateT("Only one instance of SmileyAdd could be executed.\nRemove duplicate instances from 'Plugins' directory"));
+
return 1;
}
@@ -98,11 +99,6 @@ extern "C" __declspec(dllexport) int Load(void)
opt.Load();
- // initialize log
- TCHAR szLogFileName[MAX_PATH];
- mir_sntprintf(szLogFileName, MAX_PATH, _T("%s\\smiley.log"), VARST(_T("%miranda_profile%")));
- hLogger = mir_createLog("smileys", _T("Crash log"), szLogFileName, 0);
-
// create smiley events
hEvent1 = CreateHookableEvent(ME_SMILEYADD_OPTIONSCHANGED);