]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/textctrl.cpp
compilation fix
[wxWidgets.git] / src / os2 / textctrl.cpp
index 679d0fa248cd56ac7bb8bb1da1306173bd09a3ea..8ccbe4d59fc47ae9209096e6028b0ce1f33208e6 100644 (file)
@@ -710,6 +710,15 @@ bool wxTextCtrl::IsModified() const
     return bRc;
 } // end of wxTextCtrl::IsModified
 
+void wxTextCtrl::MarkDirty()
+{
+    if (m_bIsMLE)
+        ::WinSendMsg(GetHwnd(), MLM_SETCHANGED, MPFROMLONG(TRUE), 0);
+    else
+        // EM controls do not have a SETCHANGED, what can we do??
+        wxFAIL_MSG( _T("not implemented") );
+}
+
 //
 // Makes 'unmodified'
 //