~ubuntu-branches/ubuntu/quantal/kdepimlibs/quantal-proposed

« back to all changes in this revision

Viewing changes to kldap/ldapmodel.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 14:37:07 UTC
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: package-import@ubuntu.com-20111214143707-m0qplh3hsd957ukv
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <klocale.h>
28
28
#include <kglobal.h>
29
29
 
30
 
static const KCatalogLoader loader("libkldap");
 
30
static const KCatalogLoader loader( "libkldap" );
31
31
 
32
32
using namespace KLDAP;
33
33
 
148
148
{
149
149
  if ( orientation == Qt::Horizontal && role == Qt::DisplayRole ) {
150
150
    if ( section == 0 ) {
151
 
      return QString( i18n( "Attribute" ) );
 
151
      return i18n( "Attribute" );
152
152
    } else {
153
 
      return QString( i18n( "Value" ) );
 
153
      return i18n( "Value" );
154
154
    }
155
155
  }
156
156