summaryrefslogtreecommitdiff
path: root/Plugins/skins/skins.cpp
diff options
context:
space:
mode:
authorpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2009-01-26 01:44:08 +0000
committerpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2009-01-26 01:44:08 +0000
commit8c0fdc97e08a752bf9ca84a0ac17caa3a79bea22 (patch)
tree5ab9b7fa0374ab941a77a503d6b1ac1dc2bfcf94 /Plugins/skins/skins.cpp
parent5b6037bba0a247515bffdb1c0914d9cb01b8518c (diff)
skins: 0.0.0.4
* Fixed font service iteration * Fixed naming of skin options git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@141 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/skins/skins.cpp')
-rw-r--r--Plugins/skins/skins.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/Plugins/skins/skins.cpp b/Plugins/skins/skins.cpp
index 1f80611..8641db2 100644
--- a/Plugins/skins/skins.cpp
+++ b/Plugins/skins/skins.cpp
@@ -30,7 +30,7 @@ PLUGININFOEX pluginInfo={
#else
"Skins",
#endif
- PLUGIN_MAKE_VERSION(0,0,0,2),
+ PLUGIN_MAKE_VERSION(0,0,0,4),
"Skins",
"Ricardo Pescuma Domenecci",
"",
@@ -56,9 +56,6 @@ HANDLE hNetlibUser = 0;
HANDLE hSkinsFolder = NULL;
TCHAR skinsFolder[1024];
-char *metacontacts_proto = NULL;
-BOOL loaded = FALSE;
-
std::vector<MirandaSkinnedDialog *> dlgs;
LIST_INTERFACE li;
@@ -161,9 +158,6 @@ extern "C" int __declspec(dllexport) Unload(void)
// Called when all the modules are loaded
int ModulesLoaded(WPARAM wParam, LPARAM lParam)
{
- if (ServiceExists(MS_MC_GETPROTOCOLNAME))
- metacontacts_proto = (char *) CallService(MS_MC_GETPROTOCOLNAME, 0, 0);
-
// add our modules to the KnownModules list
CallService("DBEditorpp/RegisterSingleModule", (WPARAM) MODULE_NAME, 0);
@@ -194,8 +188,6 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam)
CallService(MS_UPDATE_REGISTER, 0, (LPARAM)&upd);
}
- loaded = TRUE;
-
return 0;
}