diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-03-06 19:03:12 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-03-06 19:03:12 +0000 |
commit | 5fb7d6a8304db2236f46a6c7b33b0540fee11fd6 (patch) | |
tree | 89c9fde528f3437a86bb9fb83171f64bbc75efed /plugins/Dropbox/src/dropbox.cpp | |
parent | aeff43204a4f2b583f9f83b383be00cac89cbd4e (diff) |
Dropbox:
- added first approach of options page
- fixed tabsrmm button destruction
git-svn-id: http://svn.miranda-ng.org/main/trunk@8430 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox.cpp')
-rw-r--r-- | plugins/Dropbox/src/dropbox.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Dropbox/src/dropbox.cpp b/plugins/Dropbox/src/dropbox.cpp index 3e5cd0f5d1..b52e80c166 100644 --- a/plugins/Dropbox/src/dropbox.cpp +++ b/plugins/Dropbox/src/dropbox.cpp @@ -12,6 +12,7 @@ void CDropbox::Init() CallService(MS_PROTO_REGISTERMODULE, 0, (LPARAM)&pd);
HookEvent(ME_OPT_INITIALISE, OnOptionsInit);
+ HookEvent(ME_SYSTEM_PRESHUTDOWN, OnPreShutdown);
HookEvent(ME_SYSTEM_MODULESLOADED, CDropbox::OnModulesLoaded);
HookEvent(ME_DB_CONTACT_DELETED, CDropbox::OnContactDeleted);
HookEvent(ME_CLIST_PREBUILDCONTACTMENU, CDropbox::OnPrebuildContactMenu);
|