qulogic/libgnt

DOC: Fix weird Since tags.

2018-11-30, Elliott Sales de Andrade
a9fa05036045
Parents 4279805cd2af
Children ea9a82d15dfd
DOC: Fix weird Since tags.
  • +1 -1
    gnt.h.in
  • +8 -8
    gntslider.h
  • +2 -2
    gntstyle.h
  • +1 -1
    gnttextview.h
  • +12 -12
    gnttree.h
  • +1 -1
    gntutils.h
  • +11 -11
    gntws.h
  • --- a/gnt.h.in Thu Nov 29 23:58:37 2018 -0500
    +++ b/gnt.h.in Fri Nov 30 00:31:23 2018 -0500
    @@ -85,7 +85,7 @@
    * Present a window. If the event was triggered because of user interaction,
    * the window is moved to the foreground. Otherwise, the Urgent hint is set.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_window_present(GntWidget *window);
    --- a/gntslider.h Thu Nov 29 23:58:37 2018 -0500
    +++ b/gntslider.h Fri Nov 30 00:31:23 2018 -0500
    @@ -82,7 +82,7 @@
    *
    * Returns: The GType for GntSlider
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    GType gnt_slider_get_type(void);
    @@ -99,7 +99,7 @@
    *
    * Returns: The newly created slider
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    GntWidget * gnt_slider_new(gboolean orient, int max, int min);
    @@ -111,7 +111,7 @@
    *
    * Set the range of the slider.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_slider_set_range(GntSlider *slider, int max, int min);
    @@ -122,7 +122,7 @@
    *
    * Sets the amount of change at each step.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_slider_set_step(GntSlider *slider, int step);
    @@ -158,7 +158,7 @@
    *
    * Returns: The value of the slider after the change
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    int gnt_slider_advance_step(GntSlider *slider, int steps);
    @@ -169,7 +169,7 @@
    *
    * Set the current value for the slider.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_slider_set_value(GntSlider *slider, int value);
    @@ -179,7 +179,7 @@
    *
    * Get the current value for the slider.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    int gnt_slider_get_value(GntSlider *slider);
    @@ -190,7 +190,7 @@
    *
    * Update a label with the value of the slider whenever the value changes.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_slider_reflect_label(GntSlider *slider, GntLabel *label);
    --- a/gntstyle.h Thu Nov 29 23:58:37 2018 -0500
    +++ b/gntstyle.h Fri Nov 30 00:31:23 2018 -0500
    @@ -70,7 +70,7 @@
    *
    * Returns: The value of the setting as a string, or %NULL
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    char *gnt_style_get_from_name(const char *group, const char *key);
    @@ -113,7 +113,7 @@
    *
    * Returns: The boolean value
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    gboolean gnt_style_parse_bool(const char *value);
    --- a/gnttextview.h Thu Nov 29 23:58:37 2018 -0500
    +++ b/gnttextview.h Fri Nov 30 00:31:23 2018 -0500
    @@ -254,7 +254,7 @@
    *
    * Set a GntTextViewFlag for the textview widget.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_text_view_set_flag(GntTextView *view, GntTextViewFlag flag);
    --- a/gnttree.h Thu Nov 29 23:58:37 2018 -0500
    +++ b/gnttree.h Fri Nov 30 00:31:23 2018 -0500
    @@ -261,7 +261,7 @@
    *
    * Returns: (transfer none): The key of the row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.8.0
    */
    gpointer gnt_tree_row_get_key(GntTree *tree, GntTreeRow *row);
    @@ -274,7 +274,7 @@
    *
    * Returns: The next row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.8.0
    */
    GntTreeRow * gnt_tree_row_get_next(GntTree *tree, GntTreeRow *row);
    @@ -287,7 +287,7 @@
    *
    * Returns: The previous row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.8.0
    */
    GntTreeRow * gnt_tree_row_get_prev(GntTree *tree, GntTreeRow *row);
    @@ -300,7 +300,7 @@
    *
    * Returns: The child row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.8.0
    */
    GntTreeRow * gnt_tree_row_get_child(GntTree *tree, GntTreeRow *row);
    @@ -313,7 +313,7 @@
    *
    * Returns: The parent row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.8.0
    */
    GntTreeRow * gnt_tree_row_get_parent(GntTree *tree, GntTreeRow *row);
    @@ -503,7 +503,7 @@
    *
    * See gnt_tree_set_column_titles(), gnt_tree_set_show_title().
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_tree_set_column_title(GntTree *tree, int index, const char *title);
    @@ -615,7 +615,7 @@
    *
    * See gnt_tree_set_col_width(), gnt_tree_set_column_width_ratio().
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_tree_set_column_resizable(GntTree *tree, int col, gboolean res);
    @@ -638,7 +638,7 @@
    *
    * Set whether text in a column should be right-aligned.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_tree_set_column_is_right_aligned(GntTree *tree, int col, gboolean right);
    @@ -654,7 +654,7 @@
    *
    * See gnt_tree_set_col_width(), gnt_tree_set_column_resizable().
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_tree_set_column_width_ratio(GntTree *tree, int cols[]);
    @@ -665,7 +665,7 @@
    *
    * Set the column to use for typeahead searching.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_tree_set_search_column(GntTree *tree, int col);
    @@ -677,7 +677,7 @@
    *
    * Returns: %TRUE if the user is searching, %FALSE otherwise.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    gboolean gnt_tree_is_searching(GntTree *tree);
    @@ -692,7 +692,7 @@
    *
    * Set a custom search function.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_tree_set_search_function(GntTree *tree,
    gboolean (*func)(GntTree *tree, gpointer key, const char *search, const char *current));
    --- a/gntutils.h Thu Nov 29 23:58:37 2018 -0500
    +++ b/gntutils.h Fri Nov 30 00:31:23 2018 -0500
    @@ -162,7 +162,7 @@
    *
    * Make some keypress activate a button when some key is pressed with 'wid' in focus.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_util_set_trigger_widget(GntWidget *widget, const char *key, GntWidget *button);
    --- a/gntws.h Thu Nov 29 23:58:37 2018 -0500
    +++ b/gntws.h Fri Nov 30 00:31:23 2018 -0500
    @@ -76,7 +76,7 @@
    *
    * Returns: The GType for GntWS.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    GType gnt_ws_get_type(void);
    @@ -88,7 +88,7 @@
    *
    * Returns: The newly created workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    GntWS *gnt_ws_new(const char *name);
    @@ -99,7 +99,7 @@
    *
    * Set the name of a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_set_name(GntWS *ws, const gchar *name);
    @@ -110,7 +110,7 @@
    *
    * Add a widget to a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_add_widget(GntWS *ws, GntWidget *widget);
    @@ -121,7 +121,7 @@
    *
    * Remove a widget from a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_remove_widget(GntWS *ws, GntWidget *widget);
    @@ -132,7 +132,7 @@
    *
    * Hide a widget in a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_widget_hide(GntWidget *widget, GHashTable *nodes);
    @@ -143,7 +143,7 @@
    *
    * Show a widget in a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_widget_show(GntWidget *widget, GHashTable *nodes);
    @@ -154,7 +154,7 @@
    *
    * Draw the taskbar in a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_draw_taskbar(GntWS *ws, gboolean reposition);
    @@ -165,7 +165,7 @@
    *
    * Hide a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_hide(GntWS *ws, GHashTable *table);
    @@ -176,7 +176,7 @@
    *
    * Show a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    void gnt_ws_show(GntWS *ws, GHashTable *table);
    @@ -188,7 +188,7 @@
    *
    * Returns: The name of the workspace (can be %NULL).
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.0.0
    */
    const char * gnt_ws_get_name(GntWS *ws);