1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Moved a method in LengthAndCharacterRestriction to be public.

This commit is contained in:
jules 2016-01-12 15:20:34 +00:00
parent d4ace1b983
commit fcf1683f48

View file

@ -554,12 +554,12 @@ public:
*/
LengthAndCharacterRestriction (int maxNumChars, const String& allowedCharacters);
String filterNewText (TextEditor&, const String&) override;
private:
String allowedCharacters;
int maxLength;
String filterNewText (TextEditor&, const String&) override;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (LengthAndCharacterRestriction)
};