diff --git a/modules/juce_gui_extra/documents/juce_FileBasedDocument.h b/modules/juce_gui_extra/documents/juce_FileBasedDocument.h index c841931026..7333483f1a 100644 --- a/modules/juce_gui_extra/documents/juce_FileBasedDocument.h +++ b/modules/juce_gui_extra/documents/juce_FileBasedDocument.h @@ -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();