mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
remove Glib::ustring from libardour; allow any characters except '/' and '\' in paths (may cause issues when loading creatively named 2.X sessions; fix a couple of details of name collection and usage from the startup dialog
git-svn-id: svn://localhost/ardour2/branches/3.0@7772 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
875f0befd5
commit
4d112a8e6b
57 changed files with 563 additions and 474 deletions
|
|
@ -21,12 +21,12 @@
|
|||
#ifndef __export_format_selector_h__
|
||||
#define __export_format_selector_h__
|
||||
|
||||
#include "ardour/export_profile_manager.h"
|
||||
|
||||
#include <string>
|
||||
#include <gtkmm.h>
|
||||
#include <sigc++/signal.h>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
#include "ardour/export_profile_manager.h"
|
||||
#include "ardour/session_handle.h"
|
||||
|
||||
namespace ARDOUR {
|
||||
|
|
@ -76,7 +76,7 @@ class ExportFormatSelector : public Gtk::HBox, public ARDOUR::SessionHandlePtr
|
|||
{
|
||||
public:
|
||||
Gtk::TreeModelColumn<FormatPtr> format;
|
||||
Gtk::TreeModelColumn<Glib::ustring> label;
|
||||
Gtk::TreeModelColumn<std::string> label;
|
||||
|
||||
FormatCols () { add (format); add (label); }
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue