Skip to content

Commit afc16dc

Browse files
rbujraveit65
authored and
raveit65
committedJul 21, 2020
Guard block is missing
1 parent 9f2c966 commit afc16dc

8 files changed

+48
-0
lines changed
 

‎eel/eel-lib-self-check-functions.h

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
Author: Darin Adler <darin@eazel.com>
2424
*/
2525

26+
#ifndef __EEL_LIB_SELF_CHECK_FUNCTIONS_H__
27+
#define __EEL_LIB_SELF_CHECK_FUNCTIONS_H__
28+
2629
#include "eel-self-checks.h"
2730

2831
void eel_run_lib_self_checks (void);
@@ -47,3 +50,6 @@ void eel_run_lib_self_checks (void);
4750

4851
/* Generate prototypes for all the functions. */
4952
EEL_LIB_FOR_EACH_SELF_CHECK_FUNCTION (EEL_SELF_CHECK_FUNCTION_PROTOTYPE)
53+
54+
#endif /* __EEL_LIB_SELF_CHECK_FUNCTIONS_H__ */
55+

‎libcaja-private/caja-directory-background.h

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
Jasmine Hassan <jasmine.aura@gmail.com>
2727
*/
2828

29+
#ifndef __CAJA_DIRECTORY_BACKGROUND_H__
30+
#define __CAJA_DIRECTORY_BACKGROUND_H__
31+
2932
#include <eel/eel-background.h>
3033

3134
#include "caja-file.h"
@@ -36,3 +39,6 @@ void caja_connect_background_to_file_metadata (GtkWidget *widget,
3639
GdkDragAction default_drag_action);
3740

3841
void caja_connect_desktop_background_to_settings (CajaIconContainer *icon_container);
42+
43+
#endif /* __CAJA_DIRECTORY_BACKGROUND_H__ */
44+

‎libcaja-private/caja-directory-notify.h

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
Author: Darin Adler <darin@bentspoon.com>
2323
*/
2424

25+
#ifndef __CAJA_DIRECTORY_NOTIFY_H__
26+
#define __CAJA_DIRECTORY_NOTIFY_H__
27+
2528
#include <gdk/gdk.h>
2629

2730
#include "caja-file.h"
@@ -67,3 +70,6 @@ void caja_directory_schedule_position_set (GList *position_setting_lis
6770
* it needs to be used for code like the thumbnail generation.
6871
*/
6972
void caja_file_changed (CajaFile *file);
73+
74+
#endif /* __CAJA_DIRECTORY_NOTIFY_H__ */
75+

‎libcaja-private/caja-directory-private.h

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
Author: Darin Adler <darin@bentspoon.com>
2323
*/
2424

25+
#ifndef __CAJA_DIRECTORY_PRIVATE_H__
26+
#define __CAJA_DIRECTORY_PRIVATE_H__
27+
2528
#include <gio/gio.h>
2629
#include <libxml/tree.h>
2730

@@ -238,3 +241,6 @@ void caja_directory_remove_file_from_work_queue (CajaDirectory
238241

239242
/* debugging functions */
240243
int caja_directory_number_outstanding (void);
244+
245+
#endif /* __CAJA_DIRECTORY_PRIVATE_H__ */
246+

‎libcaja-private/caja-emblem-utils.h

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
Author: Alexander Larsson <alexl@redhat.com>
2323
*/
2424

25+
#ifndef __CAJA_EMBLEM_UTILS_H__
26+
#define __CAJA_EMBLEM_UTILS_H__
27+
2528
#include <glib.h>
2629
#include <gio/gio.h>
2730
#include <gtk/gtk.h>
@@ -51,3 +54,6 @@ gboolean caja_emblem_can_rename_emblem (const char *keyword);
5154

5255
char * caja_emblem_create_unique_keyword (const char *base);
5356

57+
58+
#endif /* __CAJA_EMBLEM_UTILS_H__ */
59+

‎libcaja-private/caja-lib-self-check-functions.h

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
Author: Darin Adler <darin@bentspoon.com>
2424
*/
2525

26+
#ifndef __CAJA_LIB_SELF_CHECK_FUNCTIONS_H__
27+
#define __CAJA_LIB_SELF_CHECK_FUNCTIONS_H__
28+
2629
#include <eel/eel-self-checks.h>
2730

2831
void caja_run_lib_self_checks (void);
@@ -48,3 +51,6 @@ void caja_run_lib_self_checks (void);
4851

4952
/* Generate prototypes for all the functions. */
5053
CAJA_LIB_FOR_EACH_SELF_CHECK_FUNCTION (EEL_SELF_CHECK_FUNCTION_PROTOTYPE)
54+
55+
#endif /* __CAJA_LIB_SELF_CHECK_FUNCTIONS_H__ */
56+

‎src/caja-self-check-functions.h

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
*/
2828

2929

30+
#ifndef __CAJA_SELF_CHECK_FUNCTIONS_H__
31+
#define __CAJA_SELF_CHECK_FUNCTIONS_H__
32+
3033
void caja_run_self_checks (void);
3134

3235
/* Putting the prototypes for these self-check functions in each
@@ -45,3 +48,6 @@ void caja_run_self_checks (void);
4548

4649
/* Generate prototypes for all the functions. */
4750
CAJA_FOR_EACH_SELF_CHECK_FUNCTION (CAJA_SELF_CHECK_FUNCTION_PROTOTYPE)
51+
52+
#endif /* __CAJA_SELF_CHECK_FUNCTIONS_H__ */
53+

‎src/file-manager/caja-audio-mime-types.h

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
/* See https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html?gi-language=c#table-of-audio-types */
2+
#ifndef __CAJA_AUDIO_MIME_TYPES_H__
3+
#define __CAJA_AUDIO_MIME_TYPES_H__
4+
25
static const char* audio_mime_types[] =
36
{
47
"audio/3gpp",
@@ -43,3 +46,6 @@ static const char* audio_mime_types[] =
4346
"audio/x-xm",
4447
"application/x-flac",
4548
};
49+
50+
#endif /* __CAJA_AUDIO_MIME_TYPES_H__ */
51+

0 commit comments

Comments
 (0)
Please sign in to comment.