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

« back to all changes in this revision

Viewing changes to plugins/pipes/pipesplugin.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:
235
235
        QDomElement contactDisplayName = doc.createElement ( "contactDisplayName" );
236
236
        fromContact.appendChild ( contactDisplayName );
237
237
        contactDisplayName.setAttribute ( "dir", msg.from()->formattedName().isRightToLeft() ? "rtl" : "ltr" );
238
 
        contactDisplayName.setAttribute ( "text", msg.from()->nickName() );
 
238
        contactDisplayName.setAttribute ( "text", msg.from()->displayName() );
239
239
 
240
240
        QDomElement metaContactDisplayName = doc.createElement ( "metaContactDisplayName" );
241
241
        fromContact.appendChild ( metaContactDisplayName );
258
258
                QDomElement contactDisplayName = doc.createElement ( "contactDisplayName" );
259
259
                toContact.appendChild ( contactDisplayName );
260
260
                contactDisplayName.setAttribute ( "dir", contact->formattedName().isRightToLeft() ? "rtl" : "ltr" );
261
 
                contactDisplayName.setAttribute ( "text", contact->nickName() );
 
261
                contactDisplayName.setAttribute ( "text", contact->displayName() );
262
262
 
263
263
                QDomElement metaContactDisplayName = doc.createElement ( "metaContactDisplayName" );
264
264
                toContact.appendChild ( metaContactDisplayName );