mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Some clean-ups and additions to Logger and FileLogger classes. Added some logging to the Introjucer.
This commit is contained in:
parent
2ac8615c7e
commit
e77d5b12ef
13 changed files with 229 additions and 149 deletions
|
|
@ -103,17 +103,17 @@ File PropertiesFile::Options::getDefaultFile() const
|
|||
|
||||
|
||||
//==============================================================================
|
||||
PropertiesFile::PropertiesFile (const File& file_, const Options& options_)
|
||||
: PropertySet (options_.ignoreCaseOfKeyNames),
|
||||
file (file_), options (options_),
|
||||
PropertiesFile::PropertiesFile (const File& f, const Options& o)
|
||||
: PropertySet (o.ignoreCaseOfKeyNames),
|
||||
file (f), options (o),
|
||||
loadedOk (false), needsWriting (false)
|
||||
{
|
||||
initialise();
|
||||
}
|
||||
|
||||
PropertiesFile::PropertiesFile (const Options& options_)
|
||||
: PropertySet (options_.ignoreCaseOfKeyNames),
|
||||
file (options_.getDefaultFile()), options (options_),
|
||||
PropertiesFile::PropertiesFile (const Options& o)
|
||||
: PropertySet (o.ignoreCaseOfKeyNames),
|
||||
file (o.getDefaultFile()), options (o),
|
||||
loadedOk (false), needsWriting (false)
|
||||
{
|
||||
initialise();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue