mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Couple of minor cleanups.
This commit is contained in:
parent
91d9c96338
commit
40ad479b96
2 changed files with 5 additions and 5 deletions
|
|
@ -624,9 +624,9 @@ private:
|
|||
JUCE_DECLARE_VST3_COM_REF_METHODS
|
||||
JUCE_DECLARE_VST3_COM_QUERY_METHODS
|
||||
|
||||
FIDString PLUGIN_API getMessageID() { return messageId.toRawUTF8(); }
|
||||
void PLUGIN_API setMessageID (FIDString id) { messageId = toString (id); }
|
||||
Vst::IAttributeList* PLUGIN_API getAttributes() { return attributeList; }
|
||||
FIDString PLUGIN_API getMessageID() override { return messageId.toRawUTF8(); }
|
||||
void PLUGIN_API setMessageID (FIDString id) override { messageId = toString (id); }
|
||||
Vst::IAttributeList* PLUGIN_API getAttributes() override { return attributeList; }
|
||||
|
||||
var value;
|
||||
|
||||
|
|
|
|||
|
|
@ -102,9 +102,9 @@ public:
|
|||
|
||||
//==============================================================================
|
||||
#if JUCE_DUMP_MOUSE_EVENTS
|
||||
#define JUCE_MOUSE_EVENT_DBG(desc) DBG ("Mouse " desc << " #" << source.getIndex() \
|
||||
#define JUCE_MOUSE_EVENT_DBG(desc) DBG ("Mouse " << desc << " #" << index \
|
||||
<< ": " << screenPosToLocalPos (comp, screenPos).toString() \
|
||||
<< " - Comp: " << String::toHexString ((int) &comp));
|
||||
<< " - Comp: " << String::toHexString ((pointer_sized_int) &comp));
|
||||
#else
|
||||
#define JUCE_MOUSE_EVENT_DBG(desc)
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue