Browse Source

Projucer: Added a missing .get() to LabelHandler

tags/2021-05-28
ed Tom Poole 7 years ago
parent
commit
a88fb32b59
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      extras/Projucer/Source/ComponentEditor/Components/jucer_LabelHandler.h

+ 2
- 2
extras/Projucer/Source/ComponentEditor/Components/jucer_LabelHandler.h View File

@@ -168,8 +168,8 @@ public:
const String userCodeComment ("UserLabelCode_" + memberVariableName);
callback
<< "if (labelThatHasChanged == " << memberVariableName
<< ")\n{\n //[" << userCodeComment << "] -- add your label text handling code here..\n //[/" << userCodeComment << "]\n}\n";
<< "if (labelThatHasChanged == " << memberVariableName << ".get())\n"
<< "{\n //[" << userCodeComment << "] -- add your label text handling code here..\n //[/" << userCodeComment << "]\n}\n";
}
}


Loading…
Cancel
Save