mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Visual studio compiler fix.
This commit is contained in:
parent
a2ba38efb8
commit
9820f04f85
1 changed files with 3 additions and 3 deletions
|
|
@ -231,7 +231,7 @@ public:
|
|||
const tresult result = ComponentBase::connect (other);
|
||||
|
||||
if (! audioProcessor.loadFrom (other))
|
||||
sendIntMessage ("JuceVST3EditController", (int64) (pointer_sized_int) this);
|
||||
sendIntMessage ("JuceVST3EditController", (Steinberg::int64) (pointer_sized_int) this);
|
||||
else
|
||||
setupParameters();
|
||||
|
||||
|
|
@ -307,7 +307,7 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
void sendIntMessage (const char* idTag, const int64 value)
|
||||
void sendIntMessage (const char* idTag, const Steinberg::int64 value)
|
||||
{
|
||||
jassert (hostContext != nullptr);
|
||||
|
||||
|
|
@ -658,7 +658,7 @@ public:
|
|||
{
|
||||
if (message != nullptr && juceVST3EditController == nullptr)
|
||||
{
|
||||
int64 value = 0;
|
||||
Steinberg::int64 value = 0;
|
||||
|
||||
if (message->getAttributes()->getInt ("JuceVST3EditController", value) == kResultTrue)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue