]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listctrl.cpp
use a constant instead of hardcoded value
[wxWidgets.git] / src / msw / listctrl.cpp
index 174af29eb58d2511843065782ffd17f8d0ca1b45..3769867501d607527e8ce923fbc4abf5430dc2a0 100644 (file)
@@ -59,9 +59,9 @@
 // Currently gcc and watcom don't define NMLVFINDITEM, and DMC only defines
 // it by its old name NM_FINDTIEM.
 //
-#if defined __VISUALC__ || defined __BORLANDC__ || defined NMLVFINDITEM
+#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(NMLVFINDITEM)
     #define HAVE_NMLVFINDITEM 1
-#elif defined __DMC__ || defined NM_FINDITEM
+#elif defined(__DMC__) || defined(NM_FINDITEM)
     #define HAVE_NM_FINDITEM 1
 #endif
 
@@ -2154,7 +2154,7 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
 #if HAVE_NMLVFINDITEM
                     NMLVFINDITEM* pFindInfo = (NMLVFINDITEM*)lParam;
 #else
-                    NM_FINDTIEM* pFindInfo = (NM_FINDTIEM*)lParam;
+                    NM_FINDITEM* pFindInfo = (NM_FINDITEM*)lParam;
 #endif
 
                     // no match by default
@@ -2290,7 +2290,7 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
 
         case LVN_ENDLABELEDITA:
         case LVN_ENDLABELEDITW:
-            // logic here is inversed compared to all the other messages
+            // logic here is inverted compared to all the other messages
             *result = event.IsAllowed();
 
             // don't keep a stale wxTextCtrl around