Skip to content
Snippets Groups Projects
Commit bbd18be4 authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Make plugin generator able to compile on VS2013

parent c8e8d3f4
No related branches found
No related tags found
No related merge requests found
...@@ -422,8 +422,8 @@ private: ...@@ -422,8 +422,8 @@ private:
SharedResourcePointer<MaterialButtonLookAndFeel> m_materialButtonLookAndFeel; SharedResourcePointer<MaterialButtonLookAndFeel> m_materialButtonLookAndFeel;
static constexpr const char* PROJECT_SETTINGS_BUTTON_ID = "projectSettingsTab"; const char* PROJECT_SETTINGS_BUTTON_ID = "projectSettingsTab";
static constexpr const char* PLUGIN_SETTINGS_BUTTON_ID = "pluginSettingsTab"; const char* PLUGIN_SETTINGS_BUTTON_ID = "pluginSettingsTab";
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SettingsComp) JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SettingsComp)
}; };
......
...@@ -30,6 +30,8 @@ ...@@ -30,6 +30,8 @@
#include "../../../Source/UI/Utils/TiledButtonGroupManager.h" #include "../../../Source/UI/Utils/TiledButtonGroupManager.h"
const char* PluginTemplatesPageComponent::TEMPLATES_PAGE_CREATE_PROJECT_BUTTON_ID = "templatesPageComponent_createProjectButton";
PluginTemplatesPageComponent::PluginTemplatesPageComponent() PluginTemplatesPageComponent::PluginTemplatesPageComponent()
: m_createProjectButton (new TextButton ("Create project...", "Create new project")) : m_createProjectButton (new TextButton ("Create project...", "Create new project"))
, m_pluginTypeComboBox (new ComboBox ("Plugin type")) , m_pluginTypeComboBox (new ComboBox ("Plugin type"))
......
...@@ -67,7 +67,7 @@ public: ...@@ -67,7 +67,7 @@ public:
void showGenericEditorTemplates(); void showGenericEditorTemplates();
void showVisualizerEditorTemplates(); void showVisualizerEditorTemplates();
static constexpr const char* TEMPLATES_PAGE_CREATE_PROJECT_BUTTON_ID = "templatesPageComponent_createProjectButton"; static const char* TEMPLATES_PAGE_CREATE_PROJECT_BUTTON_ID;
private: private:
...@@ -117,8 +117,8 @@ private: ...@@ -117,8 +117,8 @@ private:
ScopedPointer<MaterialButtonLookAndFeel> m_materialButtonLookAndFeel; ScopedPointer<MaterialButtonLookAndFeel> m_materialButtonLookAndFeel;
// Some constants // Some constants
static constexpr const char* GENERIC_EDITOR_TEMPLATES_TAB_BUTTON_ID = "genericEditorPluginTemplatesTab"; const char* GENERIC_EDITOR_TEMPLATES_TAB_BUTTON_ID = "genericEditorPluginTemplatesTab";
static constexpr const char* VISUALIZER_EDITOR_TEMPLATES_TAB_BUTTON_ID = "visualizerEditorPluginTemplatesTab"; const char* VISUALIZER_EDITOR_TEMPLATES_TAB_BUTTON_ID = "visualizerEditorPluginTemplatesTab";
// ======================================================================== // ========================================================================
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (PluginTemplatesPageComponent); JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (PluginTemplatesPageComponent);
......
...@@ -465,8 +465,8 @@ struct OpenEphysPluginAppWizard : public NewProjectWizard ...@@ -465,8 +465,8 @@ struct OpenEphysPluginAppWizard : public NewProjectWizard
return wasGeneratedSuccessfully; return wasGeneratedSuccessfully;
} }
static constexpr const char* COMBOBOX_ID_PLUGIN_TYPE = "pluginTypeComboBox";// { "pluginTypeComboBox" }; const char* COMBOBOX_ID_PLUGIN_TYPE = "pluginTypeComboBox";// { "pluginTypeComboBox" };
static constexpr const char* COMBOBOX_ID_PROCESSOR_TYPE = "processorTypeComboBox";// { "processorTypeComboBox" }; const char* COMBOBOX_ID_PROCESSOR_TYPE = "processorTypeComboBox";// { "processorTypeComboBox" };
private: private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment