13
0

Changes missing from previous commit

git-svn-id: svn://localhost/ardour2/branches/3.0@5070 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sampo Savolainen 2009-05-12 19:10:31 +00:00
parent 3b89d9eaa0
commit 8838875bd6
2 changed files with 4 additions and 4 deletions

View File

@ -159,7 +159,7 @@ LV2PluginUI::package (Gtk::Window& win)
bool
LV2PluginUI::configure_handler (GdkEventConfigure* ev)
{
cout << "CONFIGURE" << endl;
std::cout << "CONFIGURE" << std::endl;
return false;
}

View File

@ -116,7 +116,7 @@ class LV2Plugin : public ARDOUR::Plugin
XMLNode& get_state();
int set_state(const XMLNode& node);
bool save_preset(std::string uri);
bool load_preset(const string uri);
bool load_preset(const std::string uri);
virtual std::vector<Plugin::PresetRecord> get_presets();
bool has_editor() const;
@ -136,8 +136,8 @@ class LV2Plugin : public ARDOUR::Plugin
float* _defaults;
float* _latency_control_port;
bool _was_activated;
vector<bool> _port_is_input;
map<string,uint32_t> _port_indices;
std::vector<bool> _port_is_input;
std::map<std::string,uint32_t> _port_indices;
typedef struct { const void* (*extension_data)(const char* uri); } LV2_DataAccess;
LV2_DataAccess _data_access_extension_data;