Skip to content

Commit

Permalink
eflvala: fix build
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
  • Loading branch information
shr-project committed Mar 27, 2012
1 parent db0479a commit 88215ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BINDINGS/vala/eflvala/statemachine.vala
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class EflVala.ViewStateMachine

public new void state_register(ViewState? state)
{
navi.item_push("", null, null, state.object_get(), null),
navi.item_push("", null, null, state.object_get(), null);
}

public void current_state_set(ViewState state)
Expand All @@ -76,7 +76,7 @@ public class EflVala.ViewStateMachine
if(new_state != null)
current_state_set(new_state);

navi.content_promote(((ViewState)current_state).object_get());
navi.item_simple_promote(((ViewState)current_state).object_get());
}
}

Expand Down

0 comments on commit 88215ce

Please sign in to comment.