~neon/juk/master

« back to all changes in this revision

Viewing changes to coverdialog.cpp

  • Committer: Scott Wheeler
  • Date: 2006-02-26 20:25:38 UTC
  • Revision ID: git-v1:20bbe4a268618d63de1cda53f6f10f720c7eb700
Whee.  Another class down.

svn path=/trunk/KDE/kdemultimedia/juk/; revision=513896

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
class CaseInsensitiveItem : public KListViewItem
51
51
{
52
52
public:
53
 
    CaseInsensitiveItem(QListView *parent, const QString &text) :
 
53
    CaseInsensitiveItem(Q3ListView *parent, const QString &text) :
54
54
        KListViewItem(parent, text)
55
55
    {
56
56
    }
57
57
 
58
 
    int compare(QListViewItem *item, int column, bool ascending) const
 
58
    int compare(Q3ListViewItem *item, int column, bool ascending) const
59
59
    {
60
60
        Q_UNUSED(ascending);
61
61
        return text(column).lower().localeAwareCompare(item->text(column).lower());