aboutsummaryrefslogtreecommitdiffstats
path: root/src/list_item.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list_item.h')
-rw-r--r--src/list_item.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/list_item.h b/src/list_item.h
index ce5b6b2..866a98f 100644
--- a/src/list_item.h
+++ b/src/list_item.h
@@ -9,11 +9,11 @@ public:
ArchiveListItemType = QListWidgetItem::UserType
};
- ListItem(const QString &text, StatusType status_type, QListWidget *parent = nullptr, int index = 0);
+ ListItem(const QString &text, StatusType status_type, bool has_attachement, QListWidget *parent = nullptr, int index = 0);
int get_status_index();
private:
int status_index;
StatusType status_type;
- bool has_attachement;
+ bool has_attachement = false;
};