~ubuntu-branches/ubuntu/maverick/digikam/maverick

« back to all changes in this revision

Viewing changes to digikam/tagfilterview.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Luka Renko
  • Date: 2009-03-17 23:07:56 UTC
  • mfrom: (1.2.20 upstream) (3.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20090317230756-db5b8rqjwb2j35e5
Tags: 2:0.10.0-1ubuntu1
* Remaining changes to Debian (committed to Debian SVN):
  - Depends: kde-icons-oxygen dropped (included through kdelibs)
  - Recommends: kipi-plugins added (provides major functionality)
  - debian/digikamthemedesigner.manpage: add missing manpage
* Remaning change to Debian:
  - Section: devel for -dbg package (no debug in Jaunty)

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
#include <kmessagebox.h>
50
50
#include <kglobal.h>
51
51
#include <kselectaction.h>
 
52
#include <kstringhandler.h>
52
53
 
53
54
// Local includes.
54
55
 
196
197
    if (dItem && dItem->m_untagged)
197
198
        return -1;
198
199
 
199
 
    return Q3ListViewItem::compare(i, column, ascending);
 
200
    return KStringHandler::naturalCompare(key(column, ascending), i->key(column, ascending));
200
201
}
201
202
 
202
203
void TagFilterViewItem::paintCell(QPainter* p, const QColorGroup & cg, int column, int width, int align)