mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-04 03:40:07 +00:00
Lots of minor changes to prevent warnings. Small fixes to Path, AudioThumbnail, ValueTree, OutputStreams. Tweaks to convert Drawables to/from ValueTrees. New method to write XML to a stream.
This commit is contained in:
parent
d9dc6b1cfc
commit
80753f4c03
87 changed files with 1445 additions and 1755 deletions
|
|
@ -227,11 +227,11 @@ CodeDocument::Position::Position (const CodeDocument* const ownerDocument,
|
|||
}
|
||||
|
||||
CodeDocument::Position::Position (const CodeDocument* const ownerDocument,
|
||||
const int characterPos) throw()
|
||||
const int characterPos_) throw()
|
||||
: owner (const_cast <CodeDocument*> (ownerDocument)),
|
||||
positionMaintained (false)
|
||||
{
|
||||
setPosition (characterPos);
|
||||
setPosition (characterPos_);
|
||||
}
|
||||
|
||||
CodeDocument::Position::Position (const Position& other) throw()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue