- Timestamp:
- 07/18/14 12:35:00 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:ignore
-
old new 8 8 FxCopResults.txt 9 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll11 10 HeuristicLab 3.3.5.1.ReSharper.user 12 11 HeuristicLab 3.3.6.0.ReSharper.user 13 12 HeuristicLab.4.5.resharper.user 14 13 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development16 14 HeuristicLab.resharper.user 17 15 ProtoGen.exe … … 19 17 _ReSharper.HeuristicLab 20 18 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests22 19 _ReSharper.HeuristicLab.ExtLibs 23 20 bin 24 21 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HiveStatistics/sources/HeuristicLab.Collections/3.3/ObservableArray.cs
r11202 r11203 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using System.ComponentModel; 26 26 using System.Linq; 27 using HeuristicLab.Common;28 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 28 … … 169 168 Array.Clear(array, index, length); 170 169 OnPropertyChanged("Item[]"); 171 OnItemsReplaced(GetIndexedItems(index, length), oldItems); 170 OnItemsReplaced(GetIndexedItems(index, length), oldItems); 172 171 } 173 172 } … … 206 205 if (array.Length > 1) { 207 206 IndexedItem<T>[] oldItems = GetIndexedItems(); 208 array.StableSort();207 Array.Sort<T>(array); 209 208 OnPropertyChanged("Item[]"); 210 209 OnItemsMoved(GetIndexedItems(), oldItems); … … 214 213 if (array.Length > 1) { 215 214 IndexedItem<T>[] oldItems = GetIndexedItems(); 216 array.StableSort(comparison);215 Array.Sort<T>(array, comparison); 217 216 OnPropertyChanged("Item[]"); 218 217 OnItemsMoved(GetIndexedItems(), oldItems); … … 222 221 if (array.Length > 1) { 223 222 IndexedItem<T>[] oldItems = GetIndexedItems(); 224 array.StableSort(comparer);223 Array.Sort<T>(array, comparer); 225 224 OnPropertyChanged("Item[]"); 226 225 OnItemsMoved(GetIndexedItems(), oldItems); … … 230 229 if (length > 1) { 231 230 IndexedItem<T>[] oldItems = GetIndexedItems(index, length); 232 array.StableSort(index, length);231 Array.Sort<T>(array, index, length); 233 232 OnPropertyChanged("Item[]"); 234 233 OnItemsMoved(GetIndexedItems(index, length), oldItems); … … 238 237 if (length > 1) { 239 238 IndexedItem<T>[] oldItems = GetIndexedItems(index, length); 240 array.StableSort(index, length, comparer);239 Array.Sort<T>(array, index, length, comparer); 241 240 OnPropertyChanged("Item[]"); 242 241 OnItemsMoved(GetIndexedItems(index, length), oldItems);
Note: See TracChangeset
for help on using the changeset viewer.