qulogic/libgnt

Fix some gtk-doc warnings in finch
gtkdoc-conversion
2014-02-02, Ankit Vani
64c4b3d04cc1
Fix some gtk-doc warnings in finch
  • +1 -1
    gntcolors.h
  • +3 -0
    gntmain.c
  • +4 -4
    gntutils.h
  • +0 -7
    gntwidget.c
  • +3 -0
    gntwidget.h
  • +5 -2
    gntwm.h
  • --- a/gntcolors.h Sun Feb 02 06:27:23 2014 +0530
    +++ b/gntcolors.h Sun Feb 02 23:11:11 2014 +0530
    @@ -95,7 +95,7 @@
    /**
    * gnt_colors_get_color:
    - * @kfile: The string value
    + * @key: The string value
    *
    * Parse a string color
    *
    --- a/gntmain.c Sun Feb 02 06:27:23 2014 +0530
    +++ b/gntmain.c Sun Feb 02 23:11:11 2014 +0530
    @@ -99,7 +99,10 @@
    }
    /**
    + * detect_mouse_action:
    + *
    * Mouse support:
    + *
    * - bring a window on top if you click on its taskbar
    * - click on the top-bar of the active window and drag+drop to move a window
    * - click on a window to bring it to focus
    --- a/gntutils.h Sun Feb 02 06:27:23 2014 +0530
    +++ b/gntutils.h Sun Feb 02 23:11:11 2014 +0530
    @@ -125,10 +125,10 @@
    * <programlisting>
    * GntWidget *win, *button;
    * gnt_util_parse_widgets("\
    - * <vwindow id='0' fill='0' align='2'> \
    - * <label>This is a test</label> \
    - * <button id='1'>OK</button> \
    - * </vwindow>",
    + * &lt;vwindow id='0' fill='0' align='2'&gt; \
    + * &lt;label&gt;This is a test&lt;/label&gt; \
    + * &lt;button id='1'&gt;OK&lt;/button&gt; \
    + * &lt;/vwindow&gt;",
    * 2, &win, &button);
    * </programlisting>
    */
    --- a/gntwidget.c Sun Feb 02 06:27:23 2014 +0530
    +++ b/gntwidget.c Sun Feb 02 23:11:11 2014 +0530
    @@ -302,13 +302,6 @@
    GNT_WIDGET_UNSET_FLAGS(widget, GNT_WIDGET_CAN_TAKE_FOCUS);
    }
    -/**
    - * gnt_widget_destroy:
    - * @obj: The #GntWidget instance.
    - *
    - * Emits the "destroy" signal notifying all reference holders that they
    - * should release @obj.
    - */
    void
    gnt_widget_destroy(GntWidget *obj)
    {
    --- a/gntwidget.h Sun Feb 02 06:27:23 2014 +0530
    +++ b/gntwidget.h Sun Feb 02 23:11:11 2014 +0530
    @@ -151,6 +151,9 @@
    * @widget: The widget to destroy.
    *
    * Destroy a widget.
    + *
    + * Emits the "destroy" signal notifying all reference holders that they
    + * should release @widget.
    */
    void gnt_widget_destroy(GntWidget *widget);
    --- a/gntwm.h Sun Feb 02 06:27:23 2014 +0530
    +++ b/gntwm.h Sun Feb 02 23:11:11 2014 +0530
    @@ -49,7 +49,9 @@
    GNT_KP_MODE_WAIT_ON_CHILD
    } GntKeyPressMode;
    -typedef struct _GntNode
    +typedef struct _GntNode GntNode;
    +
    +struct _GntNode
    {
    GntWidget *me;
    @@ -57,7 +59,7 @@
    int scroll;
    PANEL *panel;
    GntWS *ws;
    -} GntNode;
    +};
    typedef struct _GntWM GntWM;
    @@ -122,6 +124,7 @@
    GHashTable *positions;
    + /*< private >*/
    void *res1;
    void *res2;
    void *res3;