summaryrefslogtreecommitdiff
path: root/ui/src
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2024-07-25 08:22:48 +0200
committerFelix Morgner <felix.morgner@gmail.com>2024-07-25 08:22:48 +0200
commitd3f1e65d8535c88de64f0e388ce4c909f443ea35 (patch)
tree6f0e418e8934d9832ec7ab3f34d2641aed362067 /ui/src
parent10a8d40e12b30beec0781deb0af894f66fe3561f (diff)
downloadturns-d3f1e65d8535c88de64f0e388ce4c909f443ea35.tar.xz
turns-d3f1e65d8535c88de64f0e388ce4c909f443ea35.zip
ui: fix namespace
Diffstat (limited to 'ui/src')
-rw-r--r--ui/src/init.cpp2
-rw-r--r--ui/src/widgets/participant_row.cpp2
-rw-r--r--ui/src/widgets/turn_order_view.cpp2
-rw-r--r--ui/src/windows/participant_editor.cpp2
-rw-r--r--ui/src/windows/tracker.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/ui/src/init.cpp b/ui/src/init.cpp
index f10521a..e1b8cc3 100644
--- a/ui/src/init.cpp
+++ b/ui/src/init.cpp
@@ -3,7 +3,7 @@
#include "turns/ui/widgets/participant_row.hpp"
#include "turns/ui/widgets/turn_order_view.hpp"
-namespace turns::app
+namespace turns::ui
{
auto register_types() -> void
diff --git a/ui/src/widgets/participant_row.cpp b/ui/src/widgets/participant_row.cpp
index 3e058b2..29e9100 100644
--- a/ui/src/widgets/participant_row.cpp
+++ b/ui/src/widgets/participant_row.cpp
@@ -12,7 +12,7 @@
#include <algorithm>
#include <format>
-namespace turns::app::widgets
+namespace turns::ui::widgets
{
namespace
{
diff --git a/ui/src/widgets/turn_order_view.cpp b/ui/src/widgets/turn_order_view.cpp
index 78d7c43..66042da 100644
--- a/ui/src/widgets/turn_order_view.cpp
+++ b/ui/src/widgets/turn_order_view.cpp
@@ -10,7 +10,7 @@
#include <memory>
-namespace turns::app::widgets
+namespace turns::ui::widgets
{
namespace
{
diff --git a/ui/src/windows/participant_editor.cpp b/ui/src/windows/participant_editor.cpp
index ec31c68..63c09c4 100644
--- a/ui/src/windows/participant_editor.cpp
+++ b/ui/src/windows/participant_editor.cpp
@@ -13,7 +13,7 @@
#include <ranges>
-namespace turns::app::windows
+namespace turns::ui::windows
{
participant_editor::participant_editor(BaseObjectType * base, Glib::RefPtr<Gtk::Builder> const builder, Glib::RefPtr<core::participant> obj)
diff --git a/ui/src/windows/tracker.cpp b/ui/src/windows/tracker.cpp
index b3e03d1..9069608 100644
--- a/ui/src/windows/tracker.cpp
+++ b/ui/src/windows/tracker.cpp
@@ -15,7 +15,7 @@
#include <format>
#include <utility>
-namespace turns::app::windows
+namespace turns::ui::windows
{
namespace