summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/i3-support.h3
-rw-r--r--include/mode.h2
-rw-r--r--source/dialogs/drun.c2
-rw-r--r--source/rofi.c1
-rw-r--r--source/view.c10
5 files changed, 6 insertions, 12 deletions
diff --git a/include/i3-support.h b/include/i3-support.h
index cc14e4ea..1d003b72 100644
--- a/include/i3-support.h
+++ b/include/i3-support.h
@@ -11,7 +11,6 @@
*/
/**
- * @param socket_path The I3 IPC socket.
* @param id The window to focus on.
*
* If we want to switch windows in I3, we use I3 IPC mode.
@@ -22,7 +21,7 @@
void i3_support_focus_window ( xcb_window_t id );
/**
- * @param display The display to read the i3 property from.
+ * @param xcb The xcb to read the i3 property from.
*
* Get the i3 socket from the X root window.
* @returns TRUE when i3 is running, FALSE when not.
diff --git a/include/mode.h b/include/mode.h
index aaf38566..85642826 100644
--- a/include/mode.h
+++ b/include/mode.h
@@ -66,7 +66,7 @@ int mode_init ( Mode *mode );
void mode_destroy ( Mode *mode );
/**
- * @param mode The mode to query
+ * @param sw The mode to query
*
* Get the number of entries in the mode.
*
diff --git a/source/dialogs/drun.c b/source/dialogs/drun.c
index 5f063701..a11f7137 100644
--- a/source/dialogs/drun.c
+++ b/source/dialogs/drun.c
@@ -220,7 +220,7 @@ static void get_apps_dir ( DRunModePrivateData *pd, const char *bp )
}
}
/**
- * @param cmd The command to remove from history
+ * @param entry The command entry to remove from history
*
* Remove command from history.
*/
diff --git a/source/rofi.c b/source/rofi.c
index 41089a1a..9910ebd8 100644
--- a/source/rofi.c
+++ b/source/rofi.c
@@ -393,7 +393,6 @@ static void setup_modi ( void )
}
/**
- * @param display Pointer to the X connection to use.
* Load configuration.
* Following priority: (current), X, commandline arguments
*/
diff --git a/source/view.c b/source/view.c
index ea53f2b5..f72b32fe 100644
--- a/source/view.c
+++ b/source/view.c
@@ -180,10 +180,7 @@ static void menu_capture_screenshot ( void )
}
/**
- * @param state the state of the View.
- * @param mon the work area.
- *
- * Calculates the window poslition
+ * Calculates the window position
*/
static void calculate_window_position ( void )
{
@@ -1111,10 +1108,9 @@ static void rofi_view_paste ( RofiViewState *state, xcb_selection_notify_event_t
/**
* @param state Internal state of the menu.
- * @param key the Key being pressed.
- * @param modstate the modifier state.
+ * @param action The action to perform.
*
- * Keyboard navigation through the elements.
+ * Perform keyboard navigation action.
*/
static void rofi_view_keyboard_navigation ( RofiViewState *state, KeyBindingAction action )
{