You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/valuelistviewitem.cpp

41 lines
943 B

/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
/*
List view item that carries an arbitrary value
begin: Fre Apr 25 2003
copyright: (C) 2003 by Dario Abatianni
email: eisfuchs@tigress.com
*/
#include "valuelistviewitem.h"
ValueListViewItem::ValueListViewItem(int newValue, TDEListView* parent, const TQString& label)
: TDEListViewItem(parent,label)
{
m_value=newValue;
enforceSortOrder();
}
ValueListViewItem::ValueListViewItem(int newValue, TDEListView* parent, TQListViewItem* after, const TQString& label)
: TDEListViewItem(parent,after,label)
{
m_value=newValue;
enforceSortOrder();
}
ValueListViewItem::~ValueListViewItem()
{
}
int ValueListViewItem::getValue() const
{
return m_value;
}