diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/datetime/exporter.h | 4 | ||||
-rw-r--r-- | include/datetime/menu.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/datetime/exporter.h b/include/datetime/exporter.h index a32b941..c228cc1 100644 --- a/include/datetime/exporter.h +++ b/include/datetime/exporter.h @@ -45,8 +45,8 @@ public: core::Signal<> name_lost; - void publish(std::shared_ptr<Actions>& actions, - std::vector<std::shared_ptr<Menu>>& menus); + void publish(const std::shared_ptr<Actions>& actions, + const std::vector<std::shared_ptr<Menu>>& menus); private: static void on_bus_acquired(GDBusConnection*, const gchar *name, gpointer gthis); diff --git a/include/datetime/menu.h b/include/datetime/menu.h index 5821e33..a95be10 100644 --- a/include/datetime/menu.h +++ b/include/datetime/menu.h @@ -70,7 +70,7 @@ private: class MenuFactory { public: - MenuFactory (std::shared_ptr<Actions>& actions, std::shared_ptr<State>& state); + MenuFactory (const std::shared_ptr<Actions>& actions, const std::shared_ptr<State>& state); std::shared_ptr<Menu> buildMenu(Menu::Profile profile); private: |