summaryrefslogtreecommitdiff
path: root/Protocols/SIP/sip.cpp
diff options
context:
space:
mode:
authorpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-23 17:31:09 +0000
committerpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-23 17:31:09 +0000
commit395542942d1ab15f62a8fc4eba068f1d9efcff3f (patch)
tree1c362ade01a4fa4283a4bb8210bd550fe7b20e43 /Protocols/SIP/sip.cpp
parent29224b5cce3353b67784ada08165ff9259a5bee1 (diff)
sip: 0.1.4.0
* Fix for making calls + Added MirVer (were possible) + Added popups to show errors git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@215 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Protocols/SIP/sip.cpp')
-rw-r--r--Protocols/SIP/sip.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Protocols/SIP/sip.cpp b/Protocols/SIP/sip.cpp
index c68b538..d1cf3ac 100644
--- a/Protocols/SIP/sip.cpp
+++ b/Protocols/SIP/sip.cpp
@@ -30,7 +30,7 @@ PLUGININFOEX pluginInfo={
#else
"SIP protocol (Ansi)",
#endif
- PLUGIN_MAKE_VERSION(0,1,3,0),
+ PLUGIN_MAKE_VERSION(0,1,4,0),
"Provides support for SIP protocol",
"Ricardo Pescuma Domenecci",
"pescuma@miranda-im.org",
@@ -250,12 +250,16 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam)
CallService(MS_UPDATE_REGISTER, 0, (LPARAM)&upd);
}
+ InitPopups();
+
return 0;
}
int PreShutdown(WPARAM wParam, LPARAM lParam)
{
+ DeInitPopups();
+
for(unsigned int i = 0; i < hHooks.size(); ++i)
UnhookEvent(hHooks[i]);