fix include paths

This commit is contained in:
hippoz 2022-10-29 00:10:42 +03:00
parent 55b19a3834
commit ce47b21e02
Signed by: hippoz
GPG key ID: 7C52899193467641
7 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
#include "BoxLayout.hpp"
#include "Box.hpp"
#include "Widget.hpp"
#include "src/Events.hpp"
#include "Events.hpp"
#include <cmath>
#include <vector>
#include <algorithm>

View file

@ -1,7 +1,7 @@
#include "DocumentLayout.hpp"
#include "Point.hpp"
#include "Widget.hpp"
#include "src/Events.hpp"
#include "Events.hpp"
#include <iostream>
namespace Raven {

View file

@ -1,6 +1,6 @@
#pragma once
#include "pango/pango-font.h"
#include <pango/pango-font.h>
#include "RGB.hpp"
#define __RAVEN_STYLE_PROP(name, type, ...) \

View file

@ -1,7 +1,7 @@
#include "ListLayout.hpp"
#include "Widget.hpp"
#include "Box.hpp"
#include "src/Events.hpp"
#include "Events.hpp"
namespace Raven {

View file

@ -1,6 +1,6 @@
#include "ListView.hpp"
#include "pango/pango-layout.h"
#include "src/Painter.hpp"
#include "Painter.hpp"
namespace Raven {

View file

@ -1,6 +1,6 @@
#pragma once
#include "src/Widget.hpp"
#include "Widget.hpp"
namespace Raven {

View file

@ -2,7 +2,7 @@
#include "Events.hpp"
#include "Logging.hpp"
#include "Painter.hpp"
#include "src/Styles.hpp"
#include "Styles.hpp"
#include <cctype>
#include <string>
#include <locale>