Files
pokerth/src/gui/qt/settingsdialog/mystylelistitem.cpp
T

28 lines
519 B
C++
Raw Normal View History

2009-06-05 20:18:20 +00:00
//
// C++ Implementation: mycardspixmaplabel
//
// Description:
2009-06-05 20:18:20 +00:00
//
//
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "mystylelistitem.h"
MyStyleListItem::MyStyleListItem(QStringList s, QTreeWidget *w)
: QTreeWidgetItem(w, s, QTreeWidgetItem::UserType)
2009-06-05 20:18:20 +00:00
{
}
MyStyleListItem::~MyStyleListItem()
2009-06-05 20:18:20 +00:00
{
}
bool MyStyleListItem::operator<( const QTreeWidgetItem &other ) const
2009-06-05 20:18:20 +00:00
{
return text(0).toLower() < other.text(0).toLower();
2009-06-05 20:18:20 +00:00
}