summaryrefslogtreecommitdiffstats
path: root/include/view.h
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-02-07 20:38:34 +0100
committerDave Davenport <qball@gmpclient.org>2016-02-07 20:38:34 +0100
commitad932c8fd02a278813af7c7c578caaa4cd5e4f0d (patch)
treec3fceb717b880582f9005510cc653aabfa1ed993 /include/view.h
parentca3afc6a6e9a9311da6ead7acc0edc5750c6697f (diff)
More cleanups
Diffstat (limited to 'include/view.h')
-rw-r--r--include/view.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/view.h b/include/view.h
index 234f17d8..9c4eb125 100644
--- a/include/view.h
+++ b/include/view.h
@@ -17,14 +17,8 @@ typedef enum
/**
* @param sw the Mode to show.
- * @param lines An array of strings to display.
- * @param num_lines Length of the array with strings to display.
* @param input A pointer to a string where the inputted data is placed.
* @param prompt The prompt to show.
- * @param shift pointer to integer that is set to the state of the shift key.
- * @param mmc Menu menu match callback, used for matching user input.
- * @param mmc_data data to pass to mmc.
- * @param selected_line pointer to integer holding the selected line.
* @param message Extra message to display.
* @param flags Flags indicating state of the menu.
*
@@ -32,10 +26,9 @@ typedef enum
*
* @returns The command issued (see MenuReturn)
*/
-RofiViewState *rofi_view_create ( Mode *sw,
- const char *input, char *prompt,
- const char *message, MenuFlags flags )
+RofiViewState *rofi_view_create ( Mode *sw, const char *input, char *prompt, const char *message, MenuFlags flags )
__attribute__ ( ( nonnull ( 1, 2, 3 ) ) );
+
/**
* @param state The Menu Handle
*