diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2017-10-30 15:38:04 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2017-11-01 20:13:32 +0900 |
commit | 4e1f6616b5ce24022f088943912e4b98e7764100 (patch) | |
tree | d9a72b56e8ca1a31a5a52be97c7201bbeeae728d /src/app.hpp | |
parent | 1ac578c061ec2640efb8b09396c824511702877d (diff) |
Change namespace name to generic name
The name of namespace "genivi" was used.
This is not generic, so changed it to "compositor".
Conflicts:
src/app.cpp
Change-Id: Ie088e5d404e1981f7bc149abbc20e900bea8ec2d
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/app.hpp')
-rw-r--r-- | src/app.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.hpp b/src/app.hpp index 1029aac..782f042 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -39,7 +39,7 @@ namespace wl { struct display; } -namespace genivi { +namespace compositor { struct controller; } @@ -142,7 +142,7 @@ struct App { // This is the one thing, we do not own. struct wl::display *display; - std::unique_ptr<struct genivi::controller> controller; + std::unique_ptr<struct compositor::controller> controller; std::vector<std::unique_ptr<struct wl::output>> outputs; struct config config; |