From ce47b21e021491635fe95391a8cc130015bcf284 Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Sat, 29 Oct 2022 00:10:42 +0300 Subject: [PATCH] fix include paths --- src/BoxLayout.cpp | 2 +- src/DocumentLayout.cpp | 2 +- src/GenericStyle.hpp | 2 +- src/ListLayout.cpp | 2 +- src/ListView.cpp | 2 +- src/ListView.hpp | 2 +- src/TextInput.cpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/BoxLayout.cpp b/src/BoxLayout.cpp index 4b854e0..a3b1e9c 100644 --- a/src/BoxLayout.cpp +++ b/src/BoxLayout.cpp @@ -1,7 +1,7 @@ #include "BoxLayout.hpp" #include "Box.hpp" #include "Widget.hpp" -#include "src/Events.hpp" +#include "Events.hpp" #include #include #include diff --git a/src/DocumentLayout.cpp b/src/DocumentLayout.cpp index 6b304f7..c56260c 100644 --- a/src/DocumentLayout.cpp +++ b/src/DocumentLayout.cpp @@ -1,7 +1,7 @@ #include "DocumentLayout.hpp" #include "Point.hpp" #include "Widget.hpp" -#include "src/Events.hpp" +#include "Events.hpp" #include namespace Raven { diff --git a/src/GenericStyle.hpp b/src/GenericStyle.hpp index eee9c31..ff0c851 100644 --- a/src/GenericStyle.hpp +++ b/src/GenericStyle.hpp @@ -1,6 +1,6 @@ #pragma once -#include "pango/pango-font.h" +#include #include "RGB.hpp" #define __RAVEN_STYLE_PROP(name, type, ...) \ diff --git a/src/ListLayout.cpp b/src/ListLayout.cpp index 4d4ec45..cc99986 100644 --- a/src/ListLayout.cpp +++ b/src/ListLayout.cpp @@ -1,7 +1,7 @@ #include "ListLayout.hpp" #include "Widget.hpp" #include "Box.hpp" -#include "src/Events.hpp" +#include "Events.hpp" namespace Raven { diff --git a/src/ListView.cpp b/src/ListView.cpp index fbbc491..fcbb9f7 100644 --- a/src/ListView.cpp +++ b/src/ListView.cpp @@ -1,6 +1,6 @@ #include "ListView.hpp" #include "pango/pango-layout.h" -#include "src/Painter.hpp" +#include "Painter.hpp" namespace Raven { diff --git a/src/ListView.hpp b/src/ListView.hpp index 8b2a9ec..748798e 100644 --- a/src/ListView.hpp +++ b/src/ListView.hpp @@ -1,6 +1,6 @@ #pragma once -#include "src/Widget.hpp" +#include "Widget.hpp" namespace Raven { diff --git a/src/TextInput.cpp b/src/TextInput.cpp index 8e7e1df..eca1b03 100644 --- a/src/TextInput.cpp +++ b/src/TextInput.cpp @@ -2,7 +2,7 @@ #include "Events.hpp" #include "Logging.hpp" #include "Painter.hpp" -#include "src/Styles.hpp" +#include "Styles.hpp" #include #include #include