Update Spanish translation
[ardour.git] / libs / ardour / windows_vst_plugin.cc
index a480642e3afbb030d2d99bc0d8b7db12fbd0fa24..17cfa1eed7c4120f2070ba3080b21ceabf536ca5 100644 (file)
@@ -26,7 +26,7 @@
 #include "ardour/windows_vst_plugin.h"
 #include "ardour/session.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace ARDOUR;
@@ -115,8 +115,8 @@ WindowsVSTPluginInfo::get_presets (bool user_only) const
                if (t->read ()) {
                        XMLNode* root = t->root ();
                        for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
-                               XMLProperty* uri = (*i)->property (X_("uri"));
-                               XMLProperty* label = (*i)->property (X_("label"));
+                               XMLProperty const * uri = (*i)->property (X_("uri"));
+                               XMLProperty const * label = (*i)->property (X_("label"));
                                p.push_back (Plugin::PresetRecord (uri->value(), label->value(), true));
                        }
                }