Skip to content

Commit

Permalink
Rename header guards using the old project name
Browse files Browse the repository at this point in the history
  • Loading branch information
Lecrapouille committed Jul 20, 2024
1 parent 3f5437a commit b919e81
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions addons/gdcef/gdcef/src/gdbrowser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
// SOFTWARE.
//*****************************************************************************

#ifndef STIGMEE_GDCEF_BROWSER_HPP
# define STIGMEE_GDCEF_BROWSER_HPP
#ifndef GDCEF_BROWSER_HPP
# define GDCEF_BROWSER_HPP

# if !defined(_WIN32)
# pragma GCC diagnostic push
Expand Down Expand Up @@ -660,4 +660,4 @@ class GDBrowserView : public godot::Node
# pragma GCC diagnostic pop
# endif

#endif // STIGMEE_GDCEF_BROWSER_HPP
#endif // GDCEF_BROWSER_HPP
4 changes: 2 additions & 2 deletions addons/gdcef/gdcef/src/gdcef.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
// SOFTWARE.
//*****************************************************************************

#ifndef STIGMEE_GDCEF_HPP
# define STIGMEE_GDCEF_HPP
#ifndef GDCEF_HPP
# define GDCEF_HPP

// *****************************************************************************
//! \file Wrap Chromium Embedded Framework (that can be find at
Expand Down
6 changes: 3 additions & 3 deletions addons/gdcef/gdcef/src/helper_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
// SOFTWARE.
//*****************************************************************************

#ifndef STIGMEE_GDCEF_HELPER_CONFIG_HPP
# define STIGMEE_GDCEF_HELPER_CONFIG_HPP

# include "gdcef.hpp"
#ifndef GDCEF_HELPER_CONFIG_HPP
# define GDCEF_HELPER_CONFIG_HPP

// ****************************************************************************
//! \brief CEF can be run either from the binary (standalone application) or
Expand Down Expand Up @@ -86,4 +86,4 @@ cef_state_t getConfig<cef_state_t>(godot::Dictionary const& config,
return default_value;
}

#endif // STIGMEE_GDCEF_HELPER_CONFIG_HPP
#endif // GDCEF_HELPER_CONFIG_HPP
6 changes: 3 additions & 3 deletions addons/gdcef/gdcef/src/helper_files.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
// SOFTWARE.
//*****************************************************************************

#ifndef STIGMEE_GDCEF_HELPER_FILES_HPP
# define STIGMEE_GDCEF_HELPER_FILES_HPP
#ifndef GDCEF_HELPER_FILES_HPP
# define GDCEF_HELPER_FILES_HPP

# include "helper_log.hpp"
# include <vector>
Expand Down Expand Up @@ -66,4 +66,4 @@ bool are_valid_files(std::filesystem::path const& folder,
// ****************************************************************************
fs::path real_path();

#endif // STIGMEE_GDCEF_HELPER_FILES_HPP
#endif // GDCEF_HELPER_FILES_HPP
6 changes: 3 additions & 3 deletions addons/gdcef/gdcef/src/helper_log.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
// SOFTWARE.
//*****************************************************************************

#ifndef STIGMEE_GDCEF_HELPER_LOG_HPP
# define STIGMEE_GDCEF_HELPER_LOG_HPP
#ifndef GDCEF_HELPER_LOG_HPP
# define GDCEF_HELPER_LOG_HPP

# include <iostream>
# include <sstream>
Expand Down Expand Up @@ -93,4 +93,4 @@ do { \
godot::UtilityFunctions::push_error(ss.str().c_str()); \
} while (0)

#endif // STIGMEE_GDCEF_HELPER_LOG_HPP
#endif // GDCEF_HELPER_LOG_HPP
2 changes: 1 addition & 1 deletion addons/gdcef/gdcef/src/register_types.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef GDCEF_REGISTER_TYPES_H
#define GDCEF_REGISTER_TYPES_H
# define GDCEF_REGISTER_TYPES_H

#include <godot_cpp/core/class_db.hpp>

Expand Down

0 comments on commit b919e81

Please sign in to comment.