]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
fix to last custom draw fix: only leave space for the image in the first column
[wxWidgets.git] / src / msw / textctrl.cpp
index 381a2e3c2eca6188ff1cf1103797ee956e673974..180b5bbdd6f75486a78b8406dd20e6190fe15a9f 100644 (file)
@@ -351,22 +351,25 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
         // found (or if msw.inkedit != 0 and the InkEd.dll is present).
         // However, an application can veto ink edit controls by either specifying
         // msw.inkedit = 0 or by removing wxTE_RICH[2] from the style.
-        
+        //
         if ((wxSystemSettings::HasFeature(wxSYS_TABLET_PRESENT) || wxSystemOptions::GetOptionInt(wxT("msw.inkedit")) != 0) &&
             !(wxSystemOptions::HasOption(wxT("msw.inkedit")) && wxSystemOptions::GetOptionInt(wxT("msw.inkedit")) == 0))
         {
             if (wxRichEditModule::LoadInkEdit())
-            {                
-                windowClass = INKEDIT_CLASS;                
+            {
+                windowClass = INKEDIT_CLASS;
+
+#if wxUSE_INKEDIT && wxUSE_RICHEDIT
                 m_isInkEdit = 1;
-                
+#endif
+
                 // Fake rich text version for other calls
                 m_verRichEdit = 2;
             }
         }
 #endif
-        
-        if (!m_isInkEdit)
+
+        if (!IsInkEdit())
         {
             if ( m_verRichEdit == 2 )
             {