]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/textctrl.cpp
added wxTextCtrl::HitTest(); implemented it for MSW
[wxWidgets.git] / src / motif / textctrl.cpp
index cb5b2b49a9964c833e241710876eb38b424d29b5..53f5a047ca7556212b55d43ca87ec06d42a3a89e 100644 (file)
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "textctrl.h"
 #endif
 
@@ -420,7 +420,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;