]> git.saurik.com Git - wxWidgets.git/commitdiff
no real changes, just remove unnecessary semicolons (part of #10687)
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 7 Apr 2009 11:09:14 +0000 (11:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 7 Apr 2009 11:09:14 +0000 (11:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60053 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/listctrl.cpp

index 46e271ddffa88dac16f3b7912c1a865cf5701a2d..f2992b3db4727efac82d10c1e5a81fe0ae6ed0b9 100644 (file)
@@ -893,7 +893,7 @@ bool wxListCtrl::SetItem(wxListItem& info)
             data = new wxListItemInternalData();
             item.lParam = (LPARAM) data;
             item.mask |= LVIF_PARAM;
-        };
+        }
 
 
         // user data
@@ -910,8 +910,8 @@ bool wxListCtrl::SetItem(wxListItem& info)
                 data->attr->AssignFrom(attrNew);
             else
                 data->attr = new wxListItemAttr(attrNew);
-        };
-    };
+        }
+    }
 
 
     // we could be changing only the attribute in which case we don't need to
@@ -1626,7 +1626,7 @@ long wxListCtrl::FindItem(long start, wxUIntPtr data)
         if (GetItemData(idx) == data)
             return idx;
         idx++;
-    };
+    }
 
     return -1;
 }
@@ -1746,7 +1746,7 @@ long wxListCtrl::InsertItem(const wxListItem& info)
             // and remember that we have some now...
             m_hasAnyAttr = true;
         }
-    };
+    }
 
     long rv = ListView_InsertItem(GetHwnd(), & item);