~ubuntu-branches/ubuntu/jaunty/kde4libs/jaunty

« back to all changes in this revision

Viewing changes to kdecore/config/kconfigdata.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Wenning, Jonathan Thomas, Andreas Wenning
  • Date: 2009-04-01 05:55:52 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: james.westby@ubuntu.com-20090401055552-uel5di5f3xiftax3
Tags: 4:4.2.2-0ubuntu1
[ Jonathan Thomas ]
* New upstream release (LP: #344709, #348823):
  - Bump upstreamversion and runtimedeps in debian/rules
  - Remove kubuntu_65_kcmdlineargs_decoding_svn934640.diff, applied upstream

[ Andreas Wenning ]
* Remove patch kubuntu_69_do_not_show_plasma_popups_over_screensaver.diff,
  applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  bool    bExpand:1;
63
63
};
64
64
 
65
 
 
 
65
// These operators are used to check whether an entry which is about
 
66
// to be written equals the previous value. As such, this intentionally
 
67
// omits the dirty flag from the comparison.
66
68
inline bool operator ==(const KEntry &k1, const KEntry &k2)
67
69
{
68
 
    int result = qstrcmp(k1.mValue.constData(), k2.mValue.constData());
69
 
    return (result == 0 && k1.bDirty == k2.bDirty && k1.bGlobal == k2.bGlobal
70
 
        && k1.bImmutable == k2.bImmutable && k1.bDeleted == k2.bDeleted &&
71
 
        k1.bExpand == k2.bExpand);
 
70
    return k1.bGlobal == k2.bGlobal && k1.bImmutable == k2.bImmutable
 
71
           && k1.bDeleted == k2.bDeleted && k1.bExpand == k2.bExpand
 
72
           && !qstrcmp(k1.mValue.constData(), k2.mValue.constData());
72
73
}
73
74
 
74
75
inline bool operator !=(const KEntry &k1, const KEntry &k2)