Skip to content

Commit

Permalink
fixes to c++14 build
Browse files Browse the repository at this point in the history
  • Loading branch information
gfgtdf committed May 6, 2017
1 parent 8599d76 commit 12f147d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/gamestate_inspector.cpp
Expand Up @@ -551,7 +551,7 @@ void variable_mode_controller::show_var(tree_view_node& node)
{
widget* w = node.find("name", false);
if(label* lbl = dynamic_cast<label*>(w)) {
model().set_data(vars()[lbl->get_label()]);
model().set_data(vars()[lbl->get_label().str()]);
}
}

Expand Down

0 comments on commit 12f147d

Please sign in to comment.