icon-browser: Use #pragma once consistently

That is the current coding style.
This commit is contained in:
Matthias Clasen 2023-12-20 10:24:05 -05:00
parent 4ab18b6657
commit 0dcf31292d
2 changed files with 2 additions and 10 deletions

View File

@ -1,5 +1,4 @@
#ifndef __ICON_BROWSER_APP_H
#define __ICON_BROWSER_APP_H
#pragma once
#include <gtk/gtk.h>
@ -14,6 +13,3 @@ typedef struct _IconBrowserAppClass IconBrowserAppClass;
GType icon_browser_app_get_type (void);
IconBrowserApp *icon_browser_app_new (void);
#endif /* __ICON_BROWSER_APP_H */

View File

@ -1,5 +1,4 @@
#ifndef __ICON_BROWSER_WIN_H
#define __ICON_BROWSER_WIN_H
#pragma once
#include <gtk/gtk.h>
#include "iconbrowserapp.h"
@ -15,6 +14,3 @@ typedef struct _IconBrowserWindowClass IconBrowserWindowClass;
GType icon_browser_window_get_type (void);
IconBrowserWindow *icon_browser_window_new (IconBrowserApp *app);
#endif /* __ICON_BROWSER_WIN_H */