diff options
author | Awkor <awkor.16+github@gmail.com> | 2020-05-23 13:23:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-23 13:23:05 +0200 |
commit | 037422fdba9a47bd538480988fbf8aad67d66c85 (patch) | |
tree | b206910fbe0112dd9968d62c48f5f2b0fc34b84d /src/gui | |
parent | e79bc40c0a5312baf4e8c3e33048d50b41b4a2ff (diff) | |
download | minetest-037422fdba9a47bd538480988fbf8aad67d66c85.tar.gz minetest-037422fdba9a47bd538480988fbf8aad67d66c85.tar.bz2 minetest-037422fdba9a47bd538480988fbf8aad67d66c85.zip |
Modernize include guards and add missing ones (#9898)
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/guiButtonImage.h | 2 | ||||
-rw-r--r-- | src/gui/guiButtonItemImage.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/guiButtonImage.h b/src/gui/guiButtonImage.h index a948d772b..59a25b4f0 100644 --- a/src/gui/guiButtonImage.h +++ b/src/gui/guiButtonImage.h @@ -17,6 +17,8 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#pragma once + #include "guiButton.h" #include "IGUIButton.h" diff --git a/src/gui/guiButtonItemImage.h b/src/gui/guiButtonItemImage.h index 9cd0f6188..aad923bda 100644 --- a/src/gui/guiButtonItemImage.h +++ b/src/gui/guiButtonItemImage.h @@ -17,6 +17,8 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#pragma once + #include "guiButton.h" #include "IGUIButton.h" |