From: Manuel Nickschas Date: Tue, 30 Oct 2018 16:26:43 +0000 (+0100) Subject: ircuser: Fix setting of away message time by pre-0.13 cores X-Git-Tag: 0.13.0~7 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=b383c734afd59ce24aec7cc64b124cf7411c7c81;hp=b383c734afd59ce24aec7cc64b124cf7411c7c81 ircuser: Fix setting of away message time by pre-0.13 cores IrcUser::setLastAwayMessage() is called by pre-0.13 cores (newer cores call setLastAwayMessageTime() instead). Fix wrong use of QDateTime::from[M]SecsSinceEpoch(), which is a static method returning a new QDateTime instance rather than a modifying setter. Also fix signatures passing primitive types as const refs. ---