qulogic/libgnt

Remove trailing whitespace

2011-01-04, Richard Laager
367c71b9426c
Parents 0db610c213e6
Children 3208979c5840
Remove trailing whitespace
  • +2 -2
    gnt-skel.h
  • +1 -1
    gntbindable.h
  • +1 -1
    gntcombobox.h
  • +1 -1
    gntkeys.h
  • +1 -1
    gntmenu.h
  • +3 -3
    gntslider.h
  • +6 -6
    gnttree.h
  • +3 -3
    gntutils.h
  • +1 -1
    gntws.h
  • --- a/gnt-skel.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gnt-skel.h Tue Jan 04 06:42:45 2011 +0000
    @@ -61,14 +61,14 @@
    G_BEGIN_DECLS
    /**
    - *
    + *
    *
    * @return
    */
    GType gnt_skel_get_gtype(void);
    /**
    - *
    + *
    *
    * @return
    */
    --- a/gntbindable.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gntbindable.h Tue Jan 04 06:42:45 2011 +0000
    @@ -67,7 +67,7 @@
    G_BEGIN_DECLS
    /**
    - *
    + *
    *
    * @return
    */
    --- a/gntcombobox.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gntcombobox.h Tue Jan 04 06:42:45 2011 +0000
    @@ -91,7 +91,7 @@
    /**
    * Remove an entry
    - *
    + *
    * @param box The GntComboBox
    * @param key The data to be removed
    */
    --- a/gntkeys.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gntkeys.h Tue Jan 04 06:42:45 2011 +0000
    @@ -158,7 +158,7 @@
    */
    int gnt_keys_find_combination(const char *key);
    -/* A lot of commonly used variable names are defined in <term.h>.
    +/* A lot of commonly used variable names are defined in <term.h>.
    * #undef them to make life easier for everyone. */
    #undef columns
    --- a/gntmenu.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gntmenu.h Tue Jan 04 06:42:45 2011 +0000
    @@ -63,7 +63,7 @@
    {
    GntTree parent;
    GntMenuType type;
    -
    +
    GList *list;
    int selected;
    --- a/gntslider.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gntslider.h Tue Jan 04 06:42:45 2011 +0000
    @@ -109,7 +109,7 @@
    /**
    * Sets the amount of change at each step.
    - *
    + *
    * @param slider The slider
    * @param step The amount for each step
    *
    @@ -119,7 +119,7 @@
    /**
    * Sets the amount of change a small step.
    - *
    + *
    * @param slider The slider
    * @param step The amount for a small step (for the slider)
    *
    @@ -129,7 +129,7 @@
    /**
    * Sets the amount of change a large step.
    - *
    + *
    * @param slider The slider
    * @param step The amount for a large step (for the slider)
    *
    --- a/gnttree.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gnttree.h Tue Jan 04 06:42:45 2011 +0000
    @@ -62,9 +62,9 @@
    GntTreeRow *top; /* The topmost visible item */
    GntTreeRow *bottom; /* The bottommost visible item */
    -
    +
    GntTreeRow *root; /* The root of all evil */
    -
    +
    GList *list; /* List of GntTreeRow s */
    GHashTable *hash; /* We need this for quickly referencing the rows */
    guint (*hash_func)(gconstpointer);
    @@ -216,7 +216,7 @@
    * @return A list of texts of a row. The list and its data should be
    * freed by the caller. The caller should make sure that if
    * any column of the tree contains binary data, it's not freed.
    - * @see gnt_tree_get_selection_text_list
    + * @see gnt_tree_get_selection_text_list
    * @see gnt_tree_get_selection_text
    */
    GList * gnt_tree_get_row_text_list(GntTree *tree, gpointer key);
    @@ -482,7 +482,7 @@
    * @param func The comparison function, which is used to compare
    * the keys
    *
    - * @see gnt_tree_sort_row
    + * @see gnt_tree_sort_row
    */
    void gnt_tree_set_compare_func(GntTree *tree, GCompareFunc func);
    @@ -535,7 +535,7 @@
    * Set whether a column is visible or not.
    * This can be useful when, for example, we want to store some data
    * which we don't want/need to display.
    - *
    + *
    * @param tree The tree
    * @param col The index of the column
    * @param vis If @c FALSE, the column will not be displayed
    @@ -545,7 +545,7 @@
    /**
    * Set whether a column can be resized to keep the same ratio when the
    * tree is resized.
    - *
    + *
    * @param tree The tree
    * @param col The index of the column
    * @param res If @c FALSE, the column will not be resized when the
    --- a/gntutils.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gntutils.h Tue Jan 04 06:42:45 2011 +0000
    @@ -66,7 +66,7 @@
    const char *gnt_util_onscreen_width_to_pointer(const char *str, int len, int *w);
    /**
    - * Inserts newlines in 'string' where necessary so that its onscreen width is
    + * Inserts newlines in 'string' where necessary so that its onscreen width is
    * no more than 'maxw'.
    *
    * @param string The string.
    @@ -107,7 +107,7 @@
    /**
    * Get a helpful display about the bindings of a widget.
    - *
    + *
    * @param widget The widget to get bindings for.
    *
    * @return Returns a GntTree populated with "key" -> "binding" for the widget.
    @@ -126,7 +126,7 @@
    * </vwindow>",
    * 2, &win, &button);
    * @endcode
    - *
    + *
    * @param string The XML string.
    * @param num The number of widgets to return, followed by 'num' GntWidget **
    */
    --- a/gntws.h Tue Aug 31 20:49:53 2010 +0000
    +++ b/gntws.h Tue Jan 04 06:42:45 2011 +0000
    @@ -46,7 +46,7 @@
    GList *list;
    GList *ordered;
    gpointer ui_data;
    -
    +
    void *res1;
    void *res2;
    void *res3;