mirror of
https://github.com/nerzhul/ownCloud-SMS-App.git
synced 2025-07-26 03:06:52 +00:00
Fix date type problem on some platforms
This commit is contained in:
parent
56eecb98bc
commit
fe67a6e012
@ -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,
|
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)
|
const char *seen)
|
||||||
{
|
{
|
||||||
// If buffer is not empty, we are joining messages
|
// If buffer is not empty, we are joining messages
|
||||||
|
@ -37,7 +37,7 @@ public:
|
|||||||
jint mailbox_id, jint type, jlong date, jstring address,
|
jint mailbox_id, jint type, jlong date, jstring address,
|
||||||
jstring body, jstring read, jstring seen);
|
jstring body, jstring read, jstring seen);
|
||||||
void _push(int msg_id, int mailbox_id, int type,
|
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);
|
const char *seen);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user