diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-06 21:04:14 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-06 21:04:14 +0000 |
commit | 180aaabf99e2ae20f7b2f8e370490b9ee7244ca7 (patch) | |
tree | da446ea98d83017b0aee5421651230693f2f283a /protocols/Twitter/proto.cpp | |
parent | 4b9b01c4e23576dc423d36a39ece3adc69e0b1ae (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@343 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/proto.cpp')
-rw-r--r-- | protocols/Twitter/proto.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Twitter/proto.cpp b/protocols/Twitter/proto.cpp index a65ddf978b..530017c491 100644 --- a/protocols/Twitter/proto.cpp +++ b/protocols/Twitter/proto.cpp @@ -20,6 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "utility.h"
#include "theme.h"
#include "ui.h"
+#include "oauth.dev.h"
#include "m_folders.h"
#include "m_historyevents.h"
@@ -35,8 +36,7 @@ TwitterProto::TwitterProto(const char *proto_name,const TCHAR *username) m_szModuleName = mir_strdup (proto_name);
m_tszUserName = mir_tstrdup(username);
- CreateProtoService(m_szModuleName,PS_CREATEACCMGRUI,
- &TwitterProto::SvcCreateAccMgrUI,this);
+ CreateProtoService(m_szModuleName,PS_CREATEACCMGRUI, &TwitterProto::SvcCreateAccMgrUI,this);
CreateProtoService(m_szModuleName,PS_GETNAME, &TwitterProto::GetName, this);
CreateProtoService(m_szModuleName,PS_GETSTATUS,&TwitterProto::GetStatus, this);
|