File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ void LabUi::build_weapon_subtype_list() const
93
93
}
94
94
}
95
95
96
- void LabUi::build_prop_subtype_list () const
96
+ void LabUi::build_prop_subtype_list ()
97
97
{
98
98
for (auto & propc : Prop_categories) {
99
99
with_TreeNode (propc.name .c_str ())
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class LabUi {
28
28
static void build_asteroid_list ();
29
29
static void build_debris_list ();
30
30
void build_prop_list () const ;
31
- void build_prop_subtype_list () const ;
31
+ static void build_prop_subtype_list ();
32
32
void build_background_list () const ;
33
33
void show_render_options ();
34
34
void show_object_options () const ;
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ void parse_prop_table(const char* filename)
162
162
Warning (LOCATION, " +remove flag used for prop in non-modular table" );
163
163
}
164
164
if (!remove_prop) {
165
- Removed_props.push_back (fname);
165
+ Removed_props.emplace_back (fname);
166
166
remove_prop = true ;
167
167
}
168
168
}
You can’t perform that action at this time.
0 commit comments