summaryrefslogtreecommitdiffstats
path: root/konversation/src/valuelistviewitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/valuelistviewitem.cpp')
-rw-r--r--konversation/src/valuelistviewitem.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/konversation/src/valuelistviewitem.cpp b/konversation/src/valuelistviewitem.cpp
new file mode 100644
index 0000000..262e43d
--- /dev/null
+++ b/konversation/src/valuelistviewitem.cpp
@@ -0,0 +1,40 @@
+/*
+ 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, KListView* parent, const QString& label)
+: KListViewItem(parent,label)
+{
+ m_value=newValue;
+ enforceSortOrder();
+}
+
+ValueListViewItem::ValueListViewItem(int newValue, KListView* parent, QListViewItem* after, const QString& label)
+: KListViewItem(parent,after,label)
+{
+ m_value=newValue;
+ enforceSortOrder();
+}
+
+ValueListViewItem::~ValueListViewItem()
+{
+}
+
+int ValueListViewItem::getValue() const
+{
+ return m_value;
+}