Changeset 5287 for trunk/sources/HeuristicLab.CodeEditor
- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CodeEditor/3.3/CodeEditor.cs
r5218 r5287 164 164 // if we made it this far, enable on-disk parsing cache 165 165 projectContentRegistry.ActivatePersistence(persistencePath); 166 } 167 catch (NotSupportedException) { 168 } 169 catch (IOException) { 170 } 171 catch (System.Security.SecurityException) { 172 } 173 catch (UnauthorizedAccessException) { 174 } 175 catch (ArgumentException) { 166 } catch (NotSupportedException) { 167 } catch (IOException) { 168 } catch (System.Security.SecurityException) { 169 } catch (UnauthorizedAccessException) { 170 } catch (ArgumentException) { 176 171 } 177 172 projectContent = new Dom.DefaultProjectContent(); … … 198 193 private void InitializeImageList() { 199 194 imageList1.Images.Clear(); 200 imageList1.Images.Add("Icons.16x16.Class.png", VS 2008ImageLibrary.Class);201 imageList1.Images.Add("Icons.16x16.Method.png", VS 2008ImageLibrary.Method);202 imageList1.Images.Add("Icons.16x16.Property.png", VS 2008ImageLibrary.Properties);203 imageList1.Images.Add("Icons.16x16.Field.png", VS 2008ImageLibrary.Field);204 imageList1.Images.Add("Icons.16x16.Enum.png", VS 2008ImageLibrary.Enum);205 imageList1.Images.Add("Icons.16x16.NameSpace.png", VS 2008ImageLibrary.Namespace);206 imageList1.Images.Add("Icons.16x16.Event.png", VS 2008ImageLibrary.Event);195 imageList1.Images.Add("Icons.16x16.Class.png", VSImageLibrary.Class); 196 imageList1.Images.Add("Icons.16x16.Method.png", VSImageLibrary.Method); 197 imageList1.Images.Add("Icons.16x16.Property.png", VSImageLibrary.Properties); 198 imageList1.Images.Add("Icons.16x16.Field.png", VSImageLibrary.Field); 199 imageList1.Images.Add("Icons.16x16.Enum.png", VSImageLibrary.Enum); 200 imageList1.Images.Add("Icons.16x16.NameSpace.png", VSImageLibrary.Namespace); 201 imageList1.Images.Add("Icons.16x16.Event.png", VSImageLibrary.Event); 207 202 } 208 203 … … 350 345 lastCompilationUnit = newCompilationUnit; 351 346 parseInformation.SetCompilationUnit(newCompilationUnit); 352 } 353 catch { } 347 } catch { } 354 348 } 355 349
Note: See TracChangeset
for help on using the changeset viewer.