~j-rivero/+junk/doxygen

« back to all changes in this revision

Viewing changes to src/definition.h

  • Committer: Package Import Robot
  • Author(s): Helmut Grohne
  • Date: 2014-05-16 20:58:26 UTC
  • mfrom: (1.1.33)
  • Revision ID: package-import@ubuntu.com-20140516205826-bmlvn4pltxejeyzk
Tags: 1.8.7-1
* doxygen 1.8.7 release.
  + Standard build regenerates *_js.h now. Update README.jquery.
  + Add doxygen.NEWS for GENERATE_HTML default change.
  + Refresh patches. dot-config.diff completely rewritten against
    config.xml.
* Uglify javascript during build. Therefore B-D: yui-compressor.
* Also remove winbuild to avoid accidentally using it.
* Add half a stage1 build-profile to drop libqt4-dev. Not annotating the
  dependency because #744246. Thanks to Daniel Schepler and Wookey.
  (Addresses: #738263)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *
3
3
 * 
4
4
 *
5
 
 * Copyright (C) 1997-2013 by Dimitri van Heesch.
 
5
 * Copyright (C) 1997-2014 by Dimitri van Heesch.
6
6
 *
7
7
 * Permission to use, copy, modify, and distribute this software and its
8
8
 * documentation under the terms of the GNU General Public License is hereby 
371
371
  public:
372
372
    ~DefinitionList() {}
373
373
    DefType definitionType() const { return TypeSymbolList; }
374
 
    int compareItems(QCollection::Item item1,QCollection::Item item2)
 
374
    int compareValues(const Definition *item1,const Definition *item2) const
375
375
    {
376
 
      return qstricmp(((Definition *)item1)->name(),
377
 
                     ((Definition *)item2)->name()
378
 
                    );
 
376
      return qstricmp(item1->name(),item2->name());
379
377
    }
380
378
 
381
379
};