Skip to content

Commit

Permalink
Merge branch 'dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
castle055 committed Apr 23, 2024
2 parents 4e60575 + 4958bc0 commit 89a3923
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion include/cydui.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace cydui {
}

#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>

#include "layout.h"
#include "window.h"
Expand Down
2 changes: 1 addition & 1 deletion include/layout.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define CYD_UI_LAYOUT_H

#include "components/component.h"
#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>

namespace cyd::ui::window {
class CWindow;
Expand Down
2 changes: 1 addition & 1 deletion src/graphics/color/colors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <iomanip>
#include "graphics/color.h"

#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>

using namespace cyd::ui::graphics::color;
namespace color = cyd::ui::graphics::color;
Expand Down
2 changes: 1 addition & 1 deletion src/graphics/x11/events/events.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Created by castle on 8/21/22.
//

#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>
#include "../state/state.hpp"
#include "events.hpp"
#include <X11/Xlib.h>
Expand Down
2 changes: 1 addition & 1 deletion src/graphics/x11/render/render.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <iostream>

#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>

#include <X11/Xlib.h>

Expand Down
4 changes: 3 additions & 1 deletion src/graphics/x11/state/state.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Copyright (c) 2024, Victor Castillo, All rights reserved.

//
// Created by castle on 8/21/22.
//

#include "state.hpp"
#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>

const logging::logger log_task = {.name = "X11_IMPL::state"};

Expand Down
3 changes: 1 addition & 2 deletions src/graphics/x11/x11_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
// Created by castle on 8/21/22.
//

#include "cydstd/cydstd.h"
#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>
#include "images.h"
#include "events/events.hpp"
#include <X11/Xft/Xft.h>
Expand Down
4 changes: 3 additions & 1 deletion src/logging.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
// Copyright (c) 2024, Victor Castillo, All rights reserved.

//
// Created by castle on 8/21/22.
//

#include "cydstd/logging.hpp"
#include <cyd_fabric/logging/logging.hpp>
#include <cstdarg>
#include <ctime>
#include <string>
Expand Down

0 comments on commit 89a3923

Please sign in to comment.