qulogic/libgnt

DOC: Fix weird Since tags.
release-2.x.y
2018-11-30, Elliott Sales de Andrade
e544d114bafe
Parents 1182175554e0
Children f13e51581bd1
DOC: Fix weird Since tags.

We only have Pidgin tags in this repo, so we'll have to go with its
version.
  • +1 -1
    gnt.h
  • +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 Mon Feb 10 02:46:00 2014 +0530
    +++ b/gnt.h Fri Nov 30 00:31:23 2018 -0500
    @@ -74,7 +74,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.1.0
    */
    void gnt_window_present(GntWidget *window);
    --- a/gntslider.h Mon Feb 10 02:46:00 2014 +0530
    +++ 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.1.0
    */
    GType gnt_slider_get_gtype(void);
    @@ -99,7 +99,7 @@
    *
    * Returns: The newly created slider
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    GntWidget * gnt_slider_new(gboolean orient, int max, int min);
    @@ -123,7 +123,7 @@
    *
    * Set the range of the slider.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_slider_set_range(GntSlider *slider, int max, int min);
    @@ -146,7 +146,7 @@
    *
    * Sets the amount of change at each step.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_slider_set_step(GntSlider *slider, int step);
    @@ -218,7 +218,7 @@
    *
    * Returns: The value of the slider after the change
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    int gnt_slider_advance_step(GntSlider *slider, int steps);
    @@ -229,7 +229,7 @@
    *
    * Set the current value for the slider.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_slider_set_value(GntSlider *slider, int value);
    @@ -239,7 +239,7 @@
    *
    * Get the current value for the slider.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    int gnt_slider_get_value(GntSlider *slider);
    @@ -250,7 +250,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.1.0
    */
    void gnt_slider_reflect_label(GntSlider *slider, GntLabel *label);
    --- a/gntstyle.h Mon Feb 10 02:46:00 2014 +0530
    +++ 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.1.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.1.0
    */
    gboolean gnt_style_parse_bool(const char *value);
    --- a/gnttextview.h Mon Feb 10 02:46:00 2014 +0530
    +++ 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.1.0
    */
    void gnt_text_view_set_flag(GntTextView *view, GntTextViewFlag flag);
    --- a/gnttree.h Mon Feb 10 02:46:00 2014 +0530
    +++ b/gnttree.h Fri Nov 30 00:31:23 2018 -0500
    @@ -246,7 +246,7 @@
    *
    * Returns: (transfer none): The key of the row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.7.2
    */
    gpointer gnt_tree_row_get_key(GntTree *tree, GntTreeRow *row);
    @@ -259,7 +259,7 @@
    *
    * Returns: The next row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.7.2
    */
    GntTreeRow * gnt_tree_row_get_next(GntTree *tree, GntTreeRow *row);
    @@ -272,7 +272,7 @@
    *
    * Returns: The previous row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.7.2
    */
    GntTreeRow * gnt_tree_row_get_prev(GntTree *tree, GntTreeRow *row);
    @@ -285,7 +285,7 @@
    *
    * Returns: The child row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.7.2
    */
    GntTreeRow * gnt_tree_row_get_child(GntTree *tree, GntTreeRow *row);
    @@ -298,7 +298,7 @@
    *
    * Returns: The parent row.
    *
    - * Since: 2.8.0 (gnt), 2.7.2 (pidgin)
    + * Since: 2.7.2
    */
    GntTreeRow * gnt_tree_row_get_parent(GntTree *tree, GntTreeRow *row);
    @@ -488,7 +488,7 @@
    *
    * See gnt_tree_set_column_titles(), gnt_tree_set_show_title().
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_tree_set_column_title(GntTree *tree, int index, const char *title);
    @@ -600,7 +600,7 @@
    *
    * See gnt_tree_set_col_width(), gnt_tree_set_column_width_ratio().
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_tree_set_column_resizable(GntTree *tree, int col, gboolean res);
    @@ -623,7 +623,7 @@
    *
    * Set whether text in a column should be right-aligned.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_tree_set_column_is_right_aligned(GntTree *tree, int col, gboolean right);
    @@ -639,7 +639,7 @@
    *
    * See gnt_tree_set_col_width(), gnt_tree_set_column_resizable().
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_tree_set_column_width_ratio(GntTree *tree, int cols[]);
    @@ -650,7 +650,7 @@
    *
    * Set the column to use for typeahead searching.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_tree_set_search_column(GntTree *tree, int col);
    @@ -662,7 +662,7 @@
    *
    * Returns: %TRUE if the user is searching, %FALSE otherwise.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    gboolean gnt_tree_is_searching(GntTree *tree);
    @@ -677,7 +677,7 @@
    *
    * Set a custom search function.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_tree_set_search_function(GntTree *tree,
    gboolean (*func)(GntTree *tree, gpointer key, const char *search, const char *current));
    --- a/gntutils.h Mon Feb 10 02:46:00 2014 +0530
    +++ 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.1.0
    */
    void gnt_util_set_trigger_widget(GntWidget *widget, const char *key, GntWidget *button);
    --- a/gntws.h Mon Feb 10 02:46:00 2014 +0530
    +++ b/gntws.h Fri Nov 30 00:31:23 2018 -0500
    @@ -77,7 +77,7 @@
    *
    * Returns: The GType for GntWS.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    GType gnt_ws_get_gtype(void);
    @@ -89,7 +89,7 @@
    *
    * Returns: The newly created workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    GntWS *gnt_ws_new(const char *name);
    @@ -100,7 +100,7 @@
    *
    * Set the name of a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_set_name(GntWS *ws, const gchar *name);
    @@ -111,7 +111,7 @@
    *
    * Add a widget to a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_add_widget(GntWS *ws, GntWidget *widget);
    @@ -122,7 +122,7 @@
    *
    * Remove a widget from a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_remove_widget(GntWS *ws, GntWidget *widget);
    @@ -133,7 +133,7 @@
    *
    * Hide a widget in a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_widget_hide(GntWidget *widget, GHashTable *nodes);
    @@ -144,7 +144,7 @@
    *
    * Show a widget in a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_widget_show(GntWidget *widget, GHashTable *nodes);
    @@ -155,7 +155,7 @@
    *
    * Draw the taskbar in a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_draw_taskbar(GntWS *ws, gboolean reposition);
    @@ -166,7 +166,7 @@
    *
    * Hide a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_hide(GntWS *ws, GHashTable *table);
    @@ -177,7 +177,7 @@
    *
    * Show a workspace.
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    void gnt_ws_show(GntWS *ws, GHashTable *table);
    @@ -189,7 +189,7 @@
    *
    * Returns: The name of the workspace (can be %NULL).
    *
    - * Since: 2.0.0 (gnt), 2.1.0 (pidgin)
    + * Since: 2.1.0
    */
    const char * gnt_ws_get_name(GntWS *ws);