mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
GUI use updated XML::read_buffer API
This commit is contained in:
parent
705ac7bfc5
commit
1e380b1e2e
3 changed files with 5 additions and 5 deletions
|
|
@ -703,7 +703,7 @@ ExportVideoDialog::launch_export ()
|
|||
" </Silence>"
|
||||
" </Processing>"
|
||||
"</ExportFormatSpecification>"
|
||||
));
|
||||
).c_str());
|
||||
boost::shared_ptr<ExportFormatSpecification> fmp = _session->get_export_handler()->add_format(*tree.root());
|
||||
|
||||
/* set up range */
|
||||
|
|
|
|||
|
|
@ -1207,7 +1207,7 @@ SoundFileBrowser::freesound_search()
|
|||
void
|
||||
SoundFileBrowser::handle_freesound_results(std::string theString) {
|
||||
XMLTree doc;
|
||||
doc.read_buffer( theString );
|
||||
doc.read_buffer (theString.c_str());
|
||||
XMLNode *root = doc.root();
|
||||
|
||||
if (!root) {
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ static int export_session (Session *session,
|
|||
" </Silence>"
|
||||
" </Processing>"
|
||||
"</ExportFormatSpecification>"
|
||||
));
|
||||
).c_str());
|
||||
|
||||
boost::shared_ptr<ExportFormatSpecification> fmp = session->get_export_handler()->add_format(*tree.root());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue