summaryrefslogtreecommitdiff
path: root/distrho/DistrhoPlugin.hpp
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2015-04-26 21:22:11 +0200
committerfalkTX <falktx@gmail.com>2015-04-26 21:22:11 +0200
commit4ecfc82f6b42025e401fb529146d920c006c1072 (patch)
treef2c3fba31cffef3a0a748212f76ce6e97543cec0 /distrho/DistrhoPlugin.hpp
parent67b302dc3b038fafa20fbe6fa6bdddfbaf9d0b02 (diff)
Minor fixing
Diffstat (limited to 'distrho/DistrhoPlugin.hpp')
-rw-r--r--distrho/DistrhoPlugin.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp
index c59a694c..94c93d57 100644
--- a/distrho/DistrhoPlugin.hpp
+++ b/distrho/DistrhoPlugin.hpp
@@ -18,6 +18,7 @@
#define DISTRHO_PLUGIN_HPP_INCLUDED
#include "extra/String.hpp"
+#include "extra/LeakDetector.hpp"
#include "src/DistrhoPluginChecks.h"
START_NAMESPACE_DISTRHO
@@ -591,7 +592,7 @@ protected:
This function will be called once, shortly after the plugin is created.@n
Must be implemented by your plugin class only if DISTRHO_PLUGIN_WANT_STATE is enabled.
*/
- virtual void initState(uint32_t index, String& stateKey, String& defaultStateValue) = 0;
+ virtual void initState(uint32_t index, const char* stateKey, String& defaultStateValue) = 0;
#endif
/* --------------------------------------------------------------------------------------------------------
@@ -625,7 +626,7 @@ protected:
Change an internal state @a key to @a value.@n
Must be implemented by your plugin class only if DISTRHO_PLUGIN_WANT_STATE is enabled.
*/
- virtual void setState(const String& key, const String& value) = 0;
+ virtual void setState(const char* key, const char* value) = 0;
#endif
/* --------------------------------------------------------------------------------------------------------