fix re-drawing of splitting icon
[ardour.git] / gtk2_ardour / missing_file_dialog.cc
index 66085217d2a0d07cd66950e82cf9661af429d874..c7cb7f5edccf8a08902bde16c6b0a7f9d54de28c 100644 (file)
@@ -59,12 +59,11 @@ MissingFileDialog::MissingFileDialog (Session* s, const std::string& path, DataT
         string dirstr;
 
         dirstr = s->source_search_path (type);
-        cerr << "Search path = " << dirstr << endl;
         replace_all (dirstr, ":", "\n");
 
         msg.set_justify (JUSTIFY_CENTER);
         msg.set_markup (string_compose (_("%1 cannot find the %2 file\n\n<i>%3</i>\n\nin any of these folders:\n\n\
-<tt>%4</tt>\n\n"), PROGRAM_NAME, typestr, path, dirstr));
+<tt>%4</tt>\n\n"), PROGRAM_NAME, typestr, Glib::Markup::escape_text(path), Glib::Markup::escape_text (dirstr)));
 
         HBox* hbox = manage (new HBox);
         hbox->pack_start (msg, false, true);