Skip to content

Commit 1779499

Browse files
committed
rebase tweaks
1 parent 15b56ac commit 1779499

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

code/missioneditor/sexp_tree_opf.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ sexp_list_item *SexpTreeOPF::get_listing_opf_prop()
199199
ptr = GET_FIRST(&obj_used_list);
200200
while (ptr != END_OF_LIST(&obj_used_list)) {
201201
if (ptr->type == OBJ_PROP) {
202-
auto prop = prop_id_lookup(ptr->instance);
203-
if (prop != nullptr) {
204-
head.add_data(prop->prop_name);
202+
auto p = prop_id_lookup(ptr->instance);
203+
if (p != nullptr) {
204+
head.add_data(p->prop_name);
205205
}
206206
}
207207

fred2/sexp_tree_view.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ void sexp_tree_view::end_operator_edit(bool confirm)
757757
// now it also handles messages from the operator combo box
758758
BOOL sexp_tree_view::OnCommand(WPARAM wParam, LPARAM lParam)
759759
{
760-
int i, id, data, node, op;
760+
int id, data, node, op;
761761

762762
if ((item_index >= 0) && (item_index < total_nodes) && !tree_nodes.empty())
763763
item_handle = tree_item_handle(tree_nodes[item_index]);

0 commit comments

Comments
 (0)