mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-19 01:04:20 +00:00
Added Value support to the Button's toggle state and TextEditor content. Refactored the atomic operation functions to live inside a class called Atomic, and the byte order functions into a class called ByteOrder.
This commit is contained in:
parent
3ddbc82f9f
commit
18ffeba9da
64 changed files with 3721 additions and 3609 deletions
|
|
@ -40,8 +40,8 @@ BEGIN_JUCE_NAMESPACE
|
|||
|
||||
|
||||
//==============================================================================
|
||||
static const int propFileMagicNumber = ((int) littleEndianInt ("PROP"));
|
||||
static const int propFileMagicNumberCompressed = ((int) littleEndianInt ("CPRP"));
|
||||
static const int propFileMagicNumber = ((int) ByteOrder::littleEndianInt ("PROP"));
|
||||
static const int propFileMagicNumberCompressed = ((int) ByteOrder::littleEndianInt ("CPRP"));
|
||||
|
||||
static const tchar* const propertyFileXmlTag = T("PROPERTIES");
|
||||
static const tchar* const propertyTagName = T("VALUE");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue