skip LV2 ports on GUI according to port-properties: notOnGUI and reportsLatency
[ardour.git] / gtk2_ardour / configinfo.cc
index e8ee689d66d2002426f329a5505c1e7a310ecc8a..29c7e8fe63efc60fc60401b70add4dd276897ece 100644 (file)
@@ -17,6 +17,8 @@
 
 */
 
+#include <gtkmm.h>
+
 #include "ardour/ardour.h"
 
 #include "configinfo.h"
@@ -26,10 +28,12 @@ ConfigInfoDialog::ConfigInfoDialog ()
        : ArdourDialog (_("Build Configuration"))
 {
        set_border_width (12);
-       text.get_buffer()->set_text (Glib::ustring (ARDOUR::ardour_config_info));
+       text.get_buffer()->set_text (std::string (ARDOUR::ardour_config_info));
        text.set_wrap_mode (Gtk::WRAP_WORD);
        text.show ();
        text.set_size_request (300, 800);
 
        get_vbox()->pack_start (text, true, true);
+
+       add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_ACCEPT);
 }