summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-10-05 17:45:50 +0200
committerDave Davenport <qball@gmpclient.org>2017-10-05 17:45:50 +0200
commit9ae62960c1a6436401946def280e4890f644aa40 (patch)
tree90760e7ecd43db1b280f30662163b5b2745ca0dc /include
parent6ba31683c6ec948b6e88d89d7550f98437c18ea3 (diff)
Indent files.
Diffstat (limited to 'include')
-rw-r--r--include/helper.h1
-rw-r--r--include/rofi-types.h5
-rw-r--r--include/theme.h4
-rw-r--r--include/view-internal.h2
-rw-r--r--include/xcb.h6
5 files changed, 7 insertions, 11 deletions
diff --git a/include/helper.h b/include/helper.h
index 75d3877b..715079e9 100644
--- a/include/helper.h
+++ b/include/helper.h
@@ -316,7 +316,6 @@ gboolean helper_execute_command ( const char *wd, const char *cmd, gboolean run_
*/
cairo_surface_t *cairo_image_surface_create_from_svg ( const gchar* file, int height );
-
/**
* Ranges.
*/
diff --git a/include/rofi-types.h b/include/rofi-types.h
index 11255218..bcde8f19 100644
--- a/include/rofi-types.h
+++ b/include/rofi-types.h
@@ -216,7 +216,6 @@ typedef struct Property
PropertyValue value;
} Property;
-
/**
* Structure to hold a range.
*/
@@ -226,11 +225,11 @@ typedef struct rofi_range_pair
unsigned int stop;
} rofi_range_pair;
-
/**
* Internal structure for matching.
*/
-typedef struct rofi_int_matcher_t {
+typedef struct rofi_int_matcher_t
+{
GRegex *regex;
gboolean invert;
} rofi_int_matcher;
diff --git a/include/theme.h b/include/theme.h
index 843a658a..feb6d06b 100644
--- a/include/theme.h
+++ b/include/theme.h
@@ -91,7 +91,7 @@ void rofi_theme_property_free ( Property *p );
*
* @returns a copy of p
*/
-Property* rofi_theme_property_copy ( Property *p);
+Property* rofi_theme_property_copy ( Property *p );
/**
* @param widget
*
@@ -162,7 +162,6 @@ int rofi_theme_get_integer ( const widget *widget, const char *property, int
*/
int rofi_theme_get_position ( const widget *widget, const char *property, int def );
-
/**
* @param widget The widget to query
* @param property The property to query.
@@ -288,7 +287,6 @@ GList *rofi_theme_get_list ( const widget *widget, const char * property, const
*/
gboolean rofi_theme_is_empty ( void );
-
/**
* Reset the current theme.
*/
diff --git a/include/view-internal.h b/include/view-internal.h
index ded7f9a6..59178bd1 100644
--- a/include/view-internal.h
+++ b/include/view-internal.h
@@ -123,7 +123,7 @@ struct RofiViewState
int x;
int y;
widget *motion_target;
- } mouse;
+ } mouse;
/** Regexs used for matching */
rofi_int_matcher **tokens;
diff --git a/include/xcb.h b/include/xcb.h
index 04c48058..5ddd8cca 100644
--- a/include/xcb.h
+++ b/include/xcb.h
@@ -168,11 +168,11 @@ void x11_disable_decoration ( xcb_window_t window );
typedef enum
{
/** Default EWHM compatible window manager */
- WM_EWHM = 0,
+ WM_EWHM = 0,
/** I3 Window manager */
- WM_DO_NOT_CHANGE_CURRENT_DESKTOP = 1,
+ WM_DO_NOT_CHANGE_CURRENT_DESKTOP = 1,
/** PANGO WORKSPACE NAMES */
- WM_PANGO_WORKSPACE_NAMES = 2,
+ WM_PANGO_WORKSPACE_NAMES = 2,
} WindowManagerQuirk;
/**