1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2025-07-25 10:55:49 +00:00

Fix date type problem on some platforms

This commit is contained in:
Loic Blot 2017-09-04 22:36:22 +02:00
parent 56eecb98bc
commit fe67a6e012
No known key found for this signature in database
GPG Key ID: EFAA458E8C153987
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ void SmsBuffer::push(JNIEnv *env, jobject self, jint msg_id, jint mailbox_id, ji
}
void SmsBuffer::_push(int msg_id, int mailbox_id, int type,
long date, const char *address, const char *body, const char *read,
long long date, const char *address, const char *body, const char *read,
const char *seen)
{
// If buffer is not empty, we are joining messages

View File

@ -37,7 +37,7 @@ public:
jint mailbox_id, jint type, jlong date, jstring address,
jstring body, jstring read, jstring seen);
void _push(int msg_id, int mailbox_id, int type,
long date, const char *address, const char *body, const char *read,
long long date, const char *address, const char *body, const char *read,
const char *seen);
/*