Compare commits

..

No commits in common. "a2bd12c9939bc89016eb185227c01ddeca20e26d" and "93eb59b9182b22a3f3aaf93964645776153f8141" have entirely different histories.

2 changed files with 0 additions and 24 deletions

View file

@ -187,24 +187,6 @@ namespace gui_to_app {
},
app_builder
};
addr_labels = CaracInterface<Gtk::Label>{
{
"adresse_label_base",
"adresse_label_carac",
"adresse_label_materiel",
"adresse_label_total"
},
app_builder
};
luck_labels = CaracInterface<Gtk::Label>{
{
"chance_label_base",
"chance_label_carac",
"chance_label_materiel",
"chance_label_total"
},
app_builder
};
debug_button->signal_clicked().connect(sigc::mem_fun(*this, &AppWin2Back::debug_button_clicked), false);
}
@ -262,8 +244,6 @@ namespace gui_to_app {
void AppWin2Back::update_labels() const noexcept {
update_in_labels(sheet.get_habilete(), "hab", hab_labels);
update_in_labels(sheet.get_endurance(), "endu", endu_labels);
update_in_labels(sheet.get_adresse(), "adresse", addr_labels);
update_in_labels(sheet.get_chance(), "chance", luck_labels);
}
bool AppWin2Back::insert_obj(const character::billyEnums &obj) noexcept {

View file

@ -104,10 +104,6 @@ namespace gui_to_app {
CaracInterface<Gtk::Label> endu_labels;
CaracInterface<Gtk::Label> addr_labels;
CaracInterface<Gtk::Label> luck_labels;
Gtk::Button *debug_button{ nullptr };
std::array<SwitchSignalHelper, 12> signal_handlers{