From 2bbd589f0d317032bc4b618b4d054cf0764cc548 Mon Sep 17 00:00:00 2001 From: Qball Cow Date: Mon, 27 Jul 2015 10:17:12 +0200 Subject: [PATCH] Add prefix to header guard. #191 --- include/helper.h | 6 +++--- include/history.h | 4 ++-- include/keyb.h | 6 +++--- include/rofi.h | 4 ++-- include/textbox.h | 6 +++--- include/x11-helper.h | 4 ++-- include/xrmoptions.h | 4 ++-- 7 files changed, 17 insertions(+), 17 deletions(-) diff --git a/include/helper.h b/include/helper.h index 8a7ddfc5..4c34da2f 100644 --- a/include/helper.h +++ b/include/helper.h @@ -1,5 +1,5 @@ -#ifndef HELPER_H -#define HELPER_H +#ifndef ROFI_HELPER_H +#define ROFI_HELPER_H #include "rofi.h" /** * @param string The input string. @@ -149,4 +149,4 @@ char helper_parse_char ( const char *arg ); * Set the application arguments. */ void cmd_set_arguments ( int argc, char **argv ); -#endif // HELPER_H +#endif // ROFI_HELPER_H diff --git a/include/history.h b/include/history.h index 0a501ab7..ebc9f10d 100644 --- a/include/history.h +++ b/include/history.h @@ -24,8 +24,8 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ -#ifndef HISTORY_H -#define HISTORY_H +#ifndef ROFI_HISTORY_H +#define ROFI_HISTORY_H /** * @param filename The filename of the history cache. diff --git a/include/keyb.h b/include/keyb.h index 4a74ab09..6c73a21e 100644 --- a/include/keyb.h +++ b/include/keyb.h @@ -1,5 +1,5 @@ -#ifndef KEYB_H -#define KEYB_H +#ifndef ROFI_KEYB_H +#define ROFI_KEYB_H typedef enum _KeyBindingAction { @@ -69,4 +69,4 @@ void cleanup_abe ( void ); * @returns TRUE if key combo matches, FALSE otherwise. */ int abe_test_action ( KeyBindingAction action, unsigned int mask, KeySym key ); -#endif // KEYB_H +#endif // ROFI_KEYB_H diff --git a/include/rofi.h b/include/rofi.h index f235dd50..024e37ba 100644 --- a/include/rofi.h +++ b/include/rofi.h @@ -1,5 +1,5 @@ -#ifndef SIMPLESWITCHER_H -#define SIMPLESWITCHER_H +#ifndef ROFI_MAIN_H +#define ROFI_MAIN_H #include #include #include diff --git a/include/textbox.h b/include/textbox.h index 5b35472a..4293ddee 100644 --- a/include/textbox.h +++ b/include/textbox.h @@ -1,5 +1,5 @@ -#ifndef TEXTBOX_H -#define TEXTBOX_H +#ifndef ROFI_TEXTBOX_H +#define ROFI_TEXTBOX_H #include #include @@ -246,4 +246,4 @@ int textbox_get_estimated_char_height ( void ); void textbox_text_markup ( textbox *tb, const char *text ); -#endif //TEXTBOX_H +#endif //ROFI_TEXTBOX_H diff --git a/include/x11-helper.h b/include/x11-helper.h index d2d5a99d..110b230d 100644 --- a/include/x11-helper.h +++ b/include/x11-helper.h @@ -1,5 +1,5 @@ -#ifndef X11_HELPER_H -#define X11_HELPER_H +#ifndef X11_ROFI_HELPER_H +#define X11_ROFI_HELPER_H int window_get_prop ( Display *display, Window w, Atom prop, diff --git a/include/xrmoptions.h b/include/xrmoptions.h index d809e035..147add30 100644 --- a/include/xrmoptions.h +++ b/include/xrmoptions.h @@ -1,5 +1,5 @@ -#ifndef XRMOPTIONS_H -#define XRMOPTIONS_H +#ifndef ROFI_XRMOPTIONS_H +#define ROFI_XRMOPTIONS_H // Big thanks to Sean Pringle for this code. // This maps xresource options to config structure.