~ubuntu-branches/debian/experimental/kopete/experimental

« back to all changes in this revision

Viewing changes to plugins/history2/history2logger.cpp

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia
  • Date: 2015-02-24 11:32:57 UTC
  • mfrom: (1.1.41 vivid)
  • Revision ID: package-import@ubuntu.com-20150224113257-gnupg4v7lzz18ij0
Tags: 4:14.12.2-1
* New upstream release (14.12.2).
* Bump Standards-Version to 3.9.6, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
                      "VALUES (:direction, :protocol, :account, :me_id, :me_nick, :other_id, :other_nick, :datetime, :message)");
145
145
        query.bindValue(":direction", msg.direction());
146
146
        query.bindValue(":me_id",me->contactId() );
147
 
        query.bindValue(":me_nick", me->nickName());
 
147
        query.bindValue(":me_nick", me->displayName());
148
148
        query.bindValue(":other_id",other->contactId() );
149
 
        query.bindValue(":other_nick", other->nickName());
 
149
        query.bindValue(":other_nick", other->displayName());
150
150
        query.bindValue(":datetime",msg.timestamp());
151
151
        query.bindValue(":protocol", ct->protocol()->pluginId());
152
152
        query.bindValue(":account", ct->account()->accountId());