1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Documentation fix.

This commit is contained in:
jules 2012-08-24 13:26:06 +01:00
parent 03c81655c6
commit f6f412e587

View file

@ -69,7 +69,7 @@ public:
/** Returns true if the changed() method has been called since the file was
last saved or loaded.
@see resetChangedFlag, changed
@see setChangedFlag, changed
*/
bool hasChangedSinceSaved() const { return changedSinceSave; }
@ -79,9 +79,9 @@ public:
ChangeBroadcaster base class.
After calling the method, the hasChangedSinceSaved() method will return true, until
it is reset either by saving to a file or using the resetChangedFlag() method.
it is reset either by saving to a file or using the setChangedFlag() method.
@see hasChangedSinceSaved, resetChangedFlag
@see hasChangedSinceSaved, setChangedFlag
*/
virtual void changed();