plugins: Replace include guards with #pragma once

This leaves out the statusbar-date plugin as this will likely
going to be dropped soon.
This commit is contained in:
Felix Riemann 2022-07-09 21:29:08 +02:00
parent f4a101a0e8
commit 83c77db2f2
2 changed files with 2 additions and 8 deletions

View file

@ -19,8 +19,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __EOG_FULLSCREEN_PLUGIN_H__
#define __EOG_FULLSCREEN_PLUGIN_H__
#pragma once
#include <glib.h>
#include <glib-object.h>
@ -77,5 +76,3 @@ GType eog_fullscreen_plugin_get_type (void) G_GNUC_CONST;
G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
G_END_DECLS
#endif /* __EOG_FULLSCREEN_PLUGIN_H__ */

View file

@ -19,8 +19,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __EOG_RELOAD_PLUGIN_H__
#define __EOG_RELOAD_PLUGIN_H__
#pragma once
#include <glib.h>
#include <glib-object.h>
@ -76,5 +75,3 @@ GType eog_reload_plugin_get_type (void) G_GNUC_CONST;
G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
G_END_DECLS
#endif /* __EOG_RELOAD_PLUGIN_H__ */