summaryrefslogtreecommitdiffstats
path: root/include/theme.h
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-04-23 15:17:15 +0200
committerDave Davenport <qball@gmpclient.org>2017-04-23 15:17:15 +0200
commitfb318f0ff806e8e5b0a6770ca4037b3c2e1857bb (patch)
tree535f0d3a74e982c79493676636b1bafe44444211 /include/theme.h
parentdd715fa1ad0d22f179b0bcbbf8dd37a9279e9832 (diff)
Cleanups, fix arguments mismatch
Diffstat (limited to 'include/theme.h')
-rw-r--r--include/theme.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/theme.h b/include/theme.h
index e5cb0e83..7351577d 100644
--- a/include/theme.h
+++ b/include/theme.h
@@ -244,11 +244,11 @@ Property *rofi_theme_property_create ( PropertyType type );
void rofi_theme_property_free ( Property *p );
/**
- * @param wid
+ * @param widget
*
* Free the widget and alll children.
*/
-void rofi_theme_free ( ThemeWidget *wid );
+void rofi_theme_free ( ThemeWidget *widget );
/**
* @param file filename to parse.
@@ -445,10 +445,10 @@ gboolean rofi_theme_is_empty ( void );
void rofi_theme_convert_old ( void );
/**
- * @param filename File name passed to option.
+ * @param file File name passed to option.
*
* @returns path to theme or copy of filename if not found.
*/
-char *helper_get_theme_path ( const char *filename );
+char *helper_get_theme_path ( const char *file );
#endif
#endif