-rw-r--r-- | src/napkin.cc | 2 | ||||
-rw-r--r-- | src/widgets.cc | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/napkin.cc b/src/napkin.cc index d9ba0c9..78f44f8 100644 --- a/src/napkin.cc +++ b/src/napkin.cc | |||
@@ -44,17 +44,17 @@ class napkin_ui : public Gtk::Window { | |||
44 | Glib::RefPtr<Gtk::UIManager> uiman; | 44 | Glib::RefPtr<Gtk::UIManager> uiman; |
45 | Glib::RefPtr<Gtk::ActionGroup> agroup; | 45 | Glib::RefPtr<Gtk::ActionGroup> agroup; |
46 | napkin::db_t db; | 46 | napkin::db_t db; |
47 | Glib::RefPtr<Gtk::Action> a_remove; | 47 | Glib::RefPtr<Gtk::Action> a_remove; |
48 | 48 | ||
49 | napkin_ui() | 49 | napkin_ui() |
50 | : w_history(db) | 50 | : w_history(db) |
51 | { | 51 | { |
52 | static char *ui_info = | 52 | static const char *ui_info = |
53 | "<ui>" | 53 | "<ui>" |
54 | "<menubar name='menu_bar'>" | 54 | "<menubar name='menu_bar'>" |
55 | "<menu action='menu_sleep'>" | 55 | "<menu action='menu_sleep'>" |
56 | #ifndef NDEBUG | 56 | #ifndef NDEBUG |
57 | "<menu action='menu_sleep_add'>" | 57 | "<menu action='menu_sleep_add'>" |
58 | #endif | 58 | #endif |
59 | "<menuitem action='sleep_add_from_sleeptracker'/>" | 59 | "<menuitem action='sleep_add_from_sleeptracker'/>" |
60 | #ifndef NDEBUG | 60 | #ifndef NDEBUG |
diff --git a/src/widgets.cc b/src/widgets.cc index ea85bc8..61c7da9 100644 --- a/src/widgets.cc +++ b/src/widgets.cc | |||
@@ -1,20 +1,20 @@ | |||
1 | #include <napkin/util.h> | 1 | #include <napkin/util.h> |
2 | #include "widgets.h" | 2 | #include "widgets.h" |
3 | 3 | ||
4 | namespace napkin { | 4 | namespace napkin { |
5 | namespace gtk { | 5 | namespace gtk { |
6 | 6 | ||
7 | hypnoinfo_t::hypnoinfo_t() | 7 | hypnoinfo_t::hypnoinfo_t() |
8 | : w_upper(4,3,false/*homogeneous*/), | 8 | : w_upper(4,3,false/*homogeneous*/), |
9 | lc_tobed("To bed:",0.5,0.5), | 9 | lc_tobed("To bed:",0.5f,0.5f), |
10 | lc_timeline("Sleep timeline:",0.5,0.5), | 10 | lc_timeline("Sleep timeline:",0.5f,0.5f), |
11 | lc_alarm("Alarm:",0.5,0.5), lc_window("Window:",0.5,0.5), | 11 | lc_alarm("Alarm:",0.5f,0.5f), lc_window("Window:",0.5f,0.5f), |
12 | l_data_a("",0.9,0.5) | 12 | l_data_a("",0.9f,0.5f) |
13 | { | 13 | { |
14 | add(l_date); | 14 | add(l_date); |
15 | add(l_hseparator); | 15 | add(l_hseparator); |
16 | w_upper.set_col_spacings(5); | 16 | w_upper.set_col_spacings(5); |
17 | w_upper.attach(lc_tobed,0,1,0,1, Gtk::SHRINK); | 17 | w_upper.attach(lc_tobed,0,1,0,1, Gtk::SHRINK); |
18 | w_upper.attach(lc_timeline,1,2,0,1, Gtk::SHRINK); | 18 | w_upper.attach(lc_timeline,1,2,0,1, Gtk::SHRINK); |
19 | w_upper.attach(lc_alarm,2,3,0,1, Gtk::SHRINK); | 19 | w_upper.attach(lc_alarm,2,3,0,1, Gtk::SHRINK); |
20 | w_upper.attach(lf_tobed,0,1,1,4, Gtk::SHRINK); | 20 | w_upper.attach(lf_tobed,0,1,1,4, Gtk::SHRINK); |