Skip to content

Commit 18a612e

Browse files
fxriraveit65
authored andcommitted
EomMetadataSidebar: Make header include guard actually work
The include guard had a typo which prevented it from working. Also strip the possibly reserved double underscores from it. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/dca5139
1 parent b21b983 commit 18a612e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/eom-metadata-sidebar.h‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2222
*/
2323

24-
#ifndef __EOM_METADATA_SIDEBAR_H__
25-
#define __EOM_METADATA_SIDEBAR_H_
24+
#ifndef EOM_METADATA_SIDEBAR_H
25+
#define EOM_METADATA_SIDEBAR_H
2626

2727
#include <glib-object.h>
2828
#include <gtk/gtk.h>
@@ -58,4 +58,4 @@ GtkWidget* eom_metadata_sidebar_new (EomWindow *window);
5858

5959
G_END_DECLS
6060

61-
#endif /* __EOM_METADATA_SIDEBAR_H__ */
61+
#endif /* EOM_METADATA_SIDEBAR_H */

0 commit comments

Comments
 (0)