diff options
author | louiz’ <louiz@louiz.org> | 2018-02-04 11:02:56 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-02-04 11:02:56 +0100 |
commit | d7cf736adb4837c55d8112160cd4718e549ebaaa (patch) | |
tree | af3410740a0f628ca4cca5cb67a9552e45a84528 | |
parent | 369da19d41142a20235372f3bfbe180e41008b95 (diff) | |
download | biboumi-d7cf736adb4837c55d8112160cd4718e549ebaaa.tar.gz biboumi-d7cf736adb4837c55d8112160cd4718e549ebaaa.tar.bz2 biboumi-d7cf736adb4837c55d8112160cd4718e549ebaaa.tar.xz biboumi-d7cf736adb4837c55d8112160cd4718e549ebaaa.zip |
Fix argument types in declaration of send_history_message
-rw-r--r-- | src/xmpp/xmpp_component.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/xmpp_component.hpp b/src/xmpp/xmpp_component.hpp index cef26c1..1daa6fb 100644 --- a/src/xmpp/xmpp_component.hpp +++ b/src/xmpp/xmpp_component.hpp @@ -140,7 +140,7 @@ public: * Send a message, with a <delay/> element, part of a MUC history */ void send_history_message(const std::string& muc_name, const std::string& nick, const std::string& body, - const std::string& jid_to, const std::time_t timestamp); + const std::string& jid_to, Database::time_point::rep timestamp); #endif /** * Send an unavailable presence for this nick |