diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-04 19:55:19 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-04 19:58:16 +0800 |
commit | 61de8fbbea5d8d096aafcaa8c2b8093d0f349c87 (patch) | |
tree | cbced2690629a9b0cf62f7a2285a414cb9bb4949 /src/empathy-chat-window.c | |
parent | d3f2e5578d5ec8ad221c54f30e43909547ed9617 (diff) | |
download | gsoc2013-empathy-61de8fbbea5d8d096aafcaa8c2b8093d0f349c87.tar gsoc2013-empathy-61de8fbbea5d8d096aafcaa8c2b8093d0f349c87.tar.gz gsoc2013-empathy-61de8fbbea5d8d096aafcaa8c2b8093d0f349c87.tar.bz2 gsoc2013-empathy-61de8fbbea5d8d096aafcaa8c2b8093d0f349c87.tar.lz gsoc2013-empathy-61de8fbbea5d8d096aafcaa8c2b8093d0f349c87.tar.xz gsoc2013-empathy-61de8fbbea5d8d096aafcaa8c2b8093d0f349c87.tar.zst gsoc2013-empathy-61de8fbbea5d8d096aafcaa8c2b8093d0f349c87.zip |
define EMPATHY_DISPATCHER_CURRENT_TIME rather than using G_MAXINT64 directly
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r-- | src/empathy-chat-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 44dee7ca4..d47e942f5 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -2309,7 +2309,7 @@ empathy_chat_window_present_chat (EmpathyChat *chat, priv = GET_PRIV (window); - if (timestamp == G_MAXINT64) { + if (timestamp == EMPATHY_DISPATCHER_CURRENT_TIME) { x_timestamp = GDK_CURRENT_TIME; } else { x_timestamp = CLAMP (timestamp, 0, G_MAXUINT32); |