1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Added methods to SystemStats to return the user's name.

This commit is contained in:
Julian Storer 2010-02-05 18:36:19 +00:00
parent 0d024b3306
commit ca0dce68d5
8 changed files with 131 additions and 24 deletions

View file

@ -116,26 +116,26 @@ public:
//==============================================================================
CodeDocument::Iterator::Iterator (CodeDocument* const document_)
: document (document_),
currentLine (document_->lines[0]),
line (0),
position (0),
currentLine (document_->lines[0])
position (0)
{
}
CodeDocument::Iterator::Iterator (const CodeDocument::Iterator& other)
: document (other.document),
currentLine (other.currentLine),
line (other.line),
position (other.position),
currentLine (other.currentLine)
position (other.position)
{
}
const CodeDocument::Iterator& CodeDocument::Iterator::operator= (const CodeDocument::Iterator& other) throw()
{
document = other.document;
currentLine = other.currentLine;
line = other.line;
position = other.position;
currentLine = other.currentLine;
return *this;
}