]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/textctrl.cpp
Convert back to UNIX line endings (again)
[wxWidgets.git] / src / motif / textctrl.cpp
index cb5b2b49a9964c833e241710876eb38b424d29b5..090da09f5ae193a5bab9f6587b3b7593b26e63a8 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "textctrl.h"
 #endif
 
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
 #ifdef __VMS
 #define XtParent XTPARENT
 #endif
@@ -420,7 +423,12 @@ bool wxTextCtrl::IsModified() const
     return m_modified;
 }
 
-// Makes 'unmodified'
+// Makes modified or unmodified
+void wxTextCtrl::MarkDirty()
+{
+    m_modified = TRUE;
+}
+
 void wxTextCtrl::DiscardEdits()
 {
     m_modified = FALSE;