summaryrefslogtreecommitdiff
path: root/plugins/unityshell
diff options
authorMC Return <mc.return@gmx.net>2013-02-21 13:01:36 +0100
committerMC Return <mc.return@gmx.net>2013-02-21 13:01:36 +0100
commitcea3cd25b12d23ebdf302107d3926d5ce8cbeddf (patch)
tree5fbd9d21e71b8ca6b7e0a456b40a473bdd7a33e8 /plugins/unityshell
parent7b7bb532304544baaf6082bd4d7ef7be3bf611f1 (diff)
Fixed wrong variable name typo (atk_key_event->atk_event)
(bzr r3166.2.5)
Diffstat (limited to 'plugins/unityshell')
-rw-r--r--plugins/unityshell/src/unity-util-accessible.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/unityshell/src/unity-util-accessible.cpp b/plugins/unityshell/src/unity-util-accessible.cpp
index f5a725658..ca8c6bb54 100644
--- a/plugins/unityshell/src/unity-util-accessible.cpp
+++ b/plugins/unityshell/src/unity-util-accessible.cpp
@@ -286,7 +286,7 @@ atk_key_event_from_nux_event_key(nux::Event* event)
/* we don't call atk_key_event_from_nux_event_key if the event
is different to keydown or keyup */
g_assert_not_reached();
- g_free(atk_key_event);
+ g_free(atk_event);
return NULL;
}