[geany/geany-plugins] af1aff: Commander: Fix an else if call
Frank Lanitz
git-noreply at xxxxx
Mon Aug 6 17:08:45 UTC 2012
Branch: refs/heads/master
Author: Frank Lanitz <frank at frank.uvena.de>
Committer: Frank Lanitz <frank at frank.uvena.de>
Date: Mon, 06 Aug 2012 17:08:45
Commit: af1afff661964aef9dce48de0dfd44f74fa08182
https://github.com/geany/geany-plugins/commit/af1afff661964aef9dce48de0dfd44f74fa08182
Log Message:
-----------
Commander: Fix an else if call
Modified Paths:
--------------
commander/src/commander-plugin.c
Modified: commander/src/commander-plugin.c
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -355,7 +355,7 @@ enum {
for (node = children; ! menubar && node; node = node->next) {
if (GTK_IS_MENU_BAR (node->data)) {
menubar = node->data;
- } else if GTK_IS_CONTAINER (node->data) {
+ } else if (GTK_IS_CONTAINER (node->data)) {
menubar = find_menubar (node->data);
}
}
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
More information about the Plugins-Commits
mailing list