[gnome-shell] st-container: fix a misspelled variable name
- From: Dan Winship <danw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] st-container: fix a misspelled variable name
- Date: Mon, 1 Aug 2011 18:29:09 +0000 (UTC)
commit 2a969642046a1e1a5a1ad187e26291d09c4bc9d1
Author: Dan Winship <danw gnome org>
Date: Mon Aug 1 14:28:34 2011 -0400
st-container: fix a misspelled variable name
src/st/st-container.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/st/st-container.c b/src/st/st-container.c
index 403da55..6283bd7 100644
--- a/src/st/st-container.c
+++ b/src/st/st-container.c
@@ -35,7 +35,7 @@ struct _StContainerPrivate
GList *children;
ClutterActor *first_child;
ClutterActor *last_child;
- gboolean block_update_pseude_classes;
+ gboolean block_update_pseudo_classes;
};
static void clutter_container_iface_init (ClutterContainerIface *iface);
@@ -51,7 +51,7 @@ st_container_update_pseudo_classes (StContainer *container)
ClutterActor *first_child, *last_child;
StContainerPrivate *priv = container->priv;
- if (priv->block_update_pseude_classes)
+ if (priv->block_update_pseudo_classes)
return;
first_item = priv->children;
@@ -106,12 +106,12 @@ st_container_destroy_children (StContainer *container)
{
StContainerPrivate *priv = container->priv;
- priv->block_update_pseude_classes = TRUE;
+ priv->block_update_pseudo_classes = TRUE;
while (priv->children)
clutter_actor_destroy (priv->children->data);
- priv->block_update_pseude_classes = FALSE;
+ priv->block_update_pseudo_classes = FALSE;
st_container_update_pseudo_classes (container);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]