aboutsummaryrefslogtreecommitdiff
path: root/src/gui/app.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/app.rs')
-rw-r--r--src/gui/app.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/app.rs b/src/gui/app.rs
index 9f37301..8cd7096 100644
--- a/src/gui/app.rs
+++ b/src/gui/app.rs
@@ -16,8 +16,8 @@ pub struct App {
pub conn: Rc<Connection>,
pub window: Rc<gtk::ApplicationWindow>,
pub grid: gtk::Grid,
- pub events: Vec<Event>,
- pub recurring_events: Vec<Event>,
+ pub events: Vec<Event>, // TODO: use Hashmap to have fast access to events by id ?
+ pub recurring_events: Vec<Event>, // TODO: use Hashmap to have fast access to events by id ?
pub today: NaiveDate,
pub start_date: NaiveDate,
pub end_date: NaiveDate,