Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (13 years ago)
Author:
abeham
Message:

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CodeEditor/3.3/CodeEditor.cs

    r5218 r5287  
    164164        // if we made it this far, enable on-disk parsing cache
    165165        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) {
    176171      }
    177172      projectContent = new Dom.DefaultProjectContent();
     
    198193    private void InitializeImageList() {
    199194      imageList1.Images.Clear();
    200       imageList1.Images.Add("Icons.16x16.Class.png", VS2008ImageLibrary.Class);
    201       imageList1.Images.Add("Icons.16x16.Method.png", VS2008ImageLibrary.Method);
    202       imageList1.Images.Add("Icons.16x16.Property.png", VS2008ImageLibrary.Properties);
    203       imageList1.Images.Add("Icons.16x16.Field.png", VS2008ImageLibrary.Field);
    204       imageList1.Images.Add("Icons.16x16.Enum.png", VS2008ImageLibrary.Enum);
    205       imageList1.Images.Add("Icons.16x16.NameSpace.png", VS2008ImageLibrary.Namespace);
    206       imageList1.Images.Add("Icons.16x16.Event.png", VS2008ImageLibrary.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);
    207202    }
    208203
     
    350345        lastCompilationUnit = newCompilationUnit;
    351346        parseInformation.SetCompilationUnit(newCompilationUnit);
    352       }
    353       catch { }
     347      } catch { }
    354348    }
    355349
Note: See TracChangeset for help on using the changeset viewer.