summaryrefslogtreecommitdiffstats
path: root/smtreeitem.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2013-10-12 05:30:18 +0200
committerArno <am@disconnect.de>2013-10-12 05:30:18 +0200
commit990218c07e2052f7e75af42a965cfc84b36e8371 (patch)
tree70a34d61e4cf2290565fa5cb02395a568e814162 /smtreeitem.h
parent697541ea2c50ba97fc4b4e31e9e7c4d82be51899 (diff)
downloadSheMov-990218c07e2052f7e75af42a965cfc84b36e8371.tar.gz
SheMov-990218c07e2052f7e75af42a965cfc84b36e8371.tar.bz2
SheMov-990218c07e2052f7e75af42a965cfc84b36e8371.zip
Fix Style issues
* Change fixed width front from "courier" to "Monospace" * Remove foregroundcolor from SmTreeItem. Wasn't used nor needed, quite the opposite: it made SheMov deviate from the default style.
Diffstat (limited to 'smtreeitem.h')
-rw-r--r--smtreeitem.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/smtreeitem.h b/smtreeitem.h
index 4e5265c..4021a3a 100644
--- a/smtreeitem.h
+++ b/smtreeitem.h
@@ -26,8 +26,6 @@ class SmTreeItem {
void setParent(SmTreeItem *parent);
QVariant data(int column) const;
void setData(int column, const QVariant &data);
- QVariant foregroundColor() const;
- void setForegroundColor(const QVariant &data);
bool insertChild(int where, SmTreeItem *child);
bool removeChild(int where, bool deleteChild = true);
friend class ArchiveCollector;
@@ -36,7 +34,6 @@ class SmTreeItem {
SmTreeItem(const SmTreeItem &other);
QList<SmTreeItem*> mChildren;
QList<QVariant> mData;
- QVariant mForegroundColor;
SmTreeItem *mParent;
};