diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2016-02-26 16:59:11 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2016-02-26 16:59:11 +0000 |
commit | daa2f0bb25403193460935d64a06ed53fe139434 (patch) | |
tree | 8d0958d8831db64b3dbf80c836da0e7026b787c4 | |
parent | cea70ad52e5f4cd4120cacdd97ad19c410fa89eb (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@16348 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Dropbox/src/dropbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dropbox/src/dropbox.cpp b/plugins/Dropbox/src/dropbox.cpp index d9a47c1e04..2a4477af53 100644 --- a/plugins/Dropbox/src/dropbox.cpp +++ b/plugins/Dropbox/src/dropbox.cpp @@ -29,7 +29,7 @@ CDropbox::CDropbox() : transfers(1, HandleKeySortT) pd.type = PROTOTYPE_FILTER;
Proto_RegisterModule(&pd);
- CreateServiceFunctionObj(MODULE"Inteceptor"PSS_FILE, GlobalService<&CDropbox::ProtoSendFileInterceptor>, this);
+ CreateServiceFunctionObj(MODULE "Inteceptor" PSS_FILE, GlobalService<&CDropbox::ProtoSendFileInterceptor>, this);
InitializeMenus();
|