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

« back to all changes in this revision

Viewing changes to kldap/ldapmodelnode_p.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:
98
98
    Q_UNUSED( node );
99
99
  }
100
100
  */
101
 
 
102
 
  for ( LdapAttrMap::ConstIterator it = attrs.begin(); it != attrs.end(); ++it ) {
103
 
    QString attr = it.key();
104
 
    for ( LdapAttrValue::ConstIterator it2 = (*it).begin(); it2 != (*it).end(); ++it2 ) {
 
101
  LdapAttrMap::ConstIterator end( attrs.constEnd() );
 
102
  for ( LdapAttrMap::ConstIterator it = attrs.constBegin(); it != end; ++it ) {
 
103
    const QString attr = it.key();
 
104
    LdapAttrValue::ConstIterator end2( (*it).constEnd() );
 
105
    for ( LdapAttrValue::ConstIterator it2 = (*it).constBegin(); it2 != end2; ++it2 ) {
105
106
      LdapModelNode *node = new LdapModelAttrNode( this, attr, *it2 );
106
107
      Q_UNUSED( node );
107
108
    }