]> git.saurik.com Git - wxWidgets.git/commitdiff
document wxDocument::GetDocumentSaved()
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 29 Oct 2008 16:15:03 +0000 (16:15 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 29 Oct 2008 16:15:03 +0000 (16:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56580 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/docview.h
interface/wx/docview.h

index 49be65f1bb5548974bd727eaccedc91b0de629ab..cbac9175ea8a80d85968bf61c7017fcf42ebbd21 100644 (file)
@@ -73,6 +73,8 @@ public:
     void SetDocumentName(const wxString& name) { m_documentTypeName = name; }
     wxString GetDocumentName() const { return m_documentTypeName; }
 
+    // access the flag indicating whether this document had been already saved,
+    // SetDocumentSaved() is only used internally, don't call it
     bool GetDocumentSaved() const { return m_savedYet; }
     void SetDocumentSaved(bool saved = true) { m_savedYet = saved; }
 
index 76e84f8341eb3f563e1c46ed2165eb2fabd17d99..55effdd85c9d6af4be0d96d29957dec77accc11a 100644 (file)
@@ -1043,6 +1043,13 @@ public:
     */
     wxString GetDocumentName() const;
 
+    /**
+        Return true if this document had been already saved.
+
+        @see IsModified()
+     */
+    bool GetDocumentSaved() const;
+
     /**
         Gets a pointer to the template that created the document.
     */