summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/listviewitemconf.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/confedit/listviewitemconf.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/listviewitemconf.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/noncore/apps/confedit/listviewitemconf.cpp b/noncore/apps/confedit/listviewitemconf.cpp
index 91edca2..61bd7ea 100644
--- a/noncore/apps/confedit/listviewitemconf.cpp
+++ b/noncore/apps/confedit/listviewitemconf.cpp
@@ -4,31 +4,31 @@
* 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. *
* *
***************************************************************************/
#include "listviewitemconf.h"
ListViewItemConf::ListViewItemConf(ListViewItemConf *parent)
: QListViewItem(parent), _changed(false)
{
}
-
+
ListViewItemConf::ListViewItemConf(QListView *parent)
: QListViewItem(parent), _changed(false)
{
_type = File;
}
-
+
ListViewItemConf::~ListViewItemConf()
{
}
int ListViewItemConf::getType()
{
return _type;
}
void ListViewItemConf::changed()
{
_changed=true;
@@ -39,13 +39,16 @@ void ListViewItemConf::unchanged()
{
_changed=false;
for (QListViewItem *it = firstChild(); it!=0;it = it->nextSibling())
{
((ListViewItemConf*)it)->unchanged();
}
displayText();
}
bool ListViewItemConf::revertable()
{
return _changed;
-} \ No newline at end of file
+}
+
+
+