diff --git a/src/project.cc b/src/project.cc index 27f9ae5..c0890e9 100644 --- a/src/project.cc +++ b/src/project.cc @@ -174,6 +174,8 @@ Project::Clang::DebugOptionsPopover::DebugOptionsPopover() : Gtk::Popover() { cross_compiling_frame.add(cross_compiling_vbox); vbox.pack_start(cross_compiling_frame, true, true); + + not_yet_implemented_label.set_text("Not yet implemented"); vbox.pack_end(not_yet_implemented_label, true, true); add(vbox); show_all(); diff --git a/src/project.h b/src/project.h index 3236a81..65081bc 100644 --- a/src/project.h +++ b/src/project.h @@ -66,7 +66,7 @@ namespace Project { Gtk::VBox cross_compiling_vbox; Gtk::ComboBoxText platform_list_combo_box_text; Gtk::Entry url_entry; - Gtk::Label not_yet_implemented_label=Gtk::Label("Not yet implemented"); + Gtk::Label not_yet_implemented_label; }; static std::unordered_map debug_options_popovers;