[Xfce4-commits] [xfce/xfdesktop] 01/02: trivial: a better way to spell szie
noreply at xfce.org
noreply at xfce.org
Sun Nov 2 12:03:35 CET 2014
This is an automated email from the git hooks/post-receive script.
eric pushed a commit to branch master
in repository xfce/xfdesktop.
commit ff63747cff06b86fdc892e4887a30af4d1d5d742
Author: Eric Koegel <eric.koegel at gmail.com>
Date: Sun Nov 2 13:45:03 2014 +0300
trivial: a better way to spell szie
---
src/xfdesktop-icon-view.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index dd18a42..9826bf3 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -192,7 +192,7 @@ struct _XfdesktopIconViewPrivate
* xfdesktop_icon_view_get_tooltip_size will return the correct size. */
gboolean show_tooltips;
gint tooltip_size_from_style;
- double tooltip_szie_from_xfconf;
+ double tooltip_size_from_xfconf;
gboolean single_click;
};
@@ -766,7 +766,7 @@ xfce_icon_view_set_property(GObject *object,
break;
case PROP_TOOLTIP_SIZE:
- icon_view->priv->tooltip_szie_from_xfconf = g_value_get_double(value);
+ icon_view->priv->tooltip_size_from_xfconf = g_value_get_double(value);
break;
default:
@@ -793,7 +793,7 @@ xfce_icon_view_get_property(GObject *object,
break;
case PROP_TOOLTIP_SIZE:
- g_value_set_double(value, icon_view->priv->tooltip_szie_from_xfconf);
+ g_value_set_double(value, icon_view->priv->tooltip_size_from_xfconf);
break;
default:
@@ -983,8 +983,8 @@ xfdesktop_icon_view_get_tooltip_size(XfdesktopIconView *icon_view)
return 0;
/* If the xfconf size is set and sane, use it */
- if(icon_view->priv->tooltip_szie_from_xfconf >= 0)
- return icon_view->priv->tooltip_szie_from_xfconf;
+ if(icon_view->priv->tooltip_size_from_xfconf >= 0)
+ return icon_view->priv->tooltip_size_from_xfconf;
/* if the style size is set and sane, use it */
if(icon_view->priv->tooltip_size_from_style >= 0)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list