diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-11-10 11:21:40 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-11-10 11:21:40 +0000 |
commit | e107103c369826d61b0cdc38a53c00a82d5d921d (patch) | |
tree | 994cc4c467166c1bb69feadbc1f687637a6447c0 | |
parent | 4a9be525ee5ffcaddb9602e6827fb63fa4e0f9bf (diff) |
minor type fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2270 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/Twitter/src/proto.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Twitter/src/proto.cpp b/protocols/Twitter/src/proto.cpp index 93f7e55919..bf13f01c76 100644 --- a/protocols/Twitter/src/proto.cpp +++ b/protocols/Twitter/src/proto.cpp @@ -118,9 +118,9 @@ DWORD_PTR TwitterProto::GetCaps(int type,HANDLE hContact) case PFLAG_MAXLENOFMESSAGE:
return 159; // 140 + <max length of a users name (15 apparently)> + 4 ("RT @"). this allows for the new style retweets
case PFLAG_UNIQUEIDTEXT:
- return (int) "Username";
+ return (DWORD_PTR) "Username";
case PFLAG_UNIQUEIDSETTING:
- return (int) TWITTER_KEY_UN;
+ return (DWORD_PTR) TWITTER_KEY_UN;
}
return 0;
}
|