~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to kldap/ldapmodel.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <klocalizedstring.h>
28
28
#include <kglobal.h>
29
29
 
30
 
static const KCatalogLoader loader( "libkldap" );
 
30
static const KCatalogLoader loader( QLatin1String("libkldap") );
31
31
 
32
32
using namespace KLDAP;
33
33
 
119
119
      if ( index.column() == 0 ) {
120
120
        return QVariant( attr->attributeName() );
121
121
      } else {
122
 
        return QVariant( QString( attr->attributeData().constData() ) );
 
122
        return QVariant( QLatin1String( attr->attributeData().constData() ) );
123
123
      }
124
124
    }
125
125
  } else if ( role == NodeTypeRole ) {