Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/corelib/kernel/qabstractitemmodel_p.h

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation ([email protected])
     
    134134    struct Change {
    135135        Change() : first(-1), last(-1) {}
    136         Change(const Change &c) : parent(c.parent), first(c.first), last(c.last) {}
    137         Change(const QModelIndex &p, int f, int l) : parent(p), first(f), last(l) {}
     136        Change(const Change &c) : parent(c.parent), first(c.first), last(c.last) {}
     137        Change(const QModelIndex &p, int f, int l) : parent(p), first(f), last(l) {}
    138138        QModelIndex parent;
    139139        int first, last;
     140
     141
     142
     143
     144
     145
     146
     147
     148
     149
     150
     151
     152
     153
     154
    140155
    141156        bool isValid() { return first >= 0 && last >= 0; }
Note: See TracChangeset for help on using the changeset viewer.