Skip to content

Commit

Permalink
Fix resource renaming error
Browse files Browse the repository at this point in the history
  • Loading branch information
IvenBach committed Jun 25, 2019
1 parent 896a161 commit e82c4b9
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
24 changes: 12 additions & 12 deletions Rubberduck.Core/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Rubberduck.Core/Properties/Settings.settings
Expand Up @@ -185,33 +185,33 @@
<BlockCompletion IsEnabled="false" CompleteOnEnter="false" CompleteOnTab="false" />
&lt;/AutoCompleteSettings&gt;</Value>
</Setting>
<Setting Name="ToDoGridViewColumnInfo_Description" Type="Rubberduck.Settings.GridViewColumnInfo" Scope="Application">
<Setting Name="ToDoGridViewColumnInfo_Description" Type="Rubberduck.Settings.ToDoGridViewColumnInfo" Scope="Application">
<Value Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;DisplayIndex&gt;0&lt;/DisplayIndex&gt;
&lt;Width /&gt;
&lt;/GridViewColumnInfo&gt;</Value>
&lt;/ToDoGridViewColumnInfo&gt;</Value>
</Setting>
<Setting Name="ToDoGridViewColumnInfo_Project" Type="Rubberduck.Settings.GridViewColumnInfo" Scope="Application">
<Setting Name="ToDoGridViewColumnInfo_Project" Type="Rubberduck.Settings.ToDoGridViewColumnInfo" Scope="Application">
<Value Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;DisplayIndex&gt;1&lt;/DisplayIndex&gt;
&lt;Width /&gt;
&lt;/GridViewColumnInfo&gt;</Value>
&lt;/ToDoGridViewColumnInfo&gt;</Value>
</Setting>
<Setting Name="ToDoGridViewColumnInfo_Module" Type="Rubberduck.Settings.GridViewColumnInfo" Scope="Application">
<Setting Name="ToDoGridViewColumnInfo_Module" Type="Rubberduck.Settings.ToDoGridViewColumnInfo" Scope="Application">
<Value Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;DisplayIndex&gt;2&lt;/DisplayIndex&gt;
&lt;Width /&gt;
&lt;/GridViewColumnInfo&gt;</Value>
&lt;/ToDoGridViewColumnInfo&gt;</Value>
</Setting>
<Setting Name="ToDoGridViewColumnInfo_LineNumber" Type="Rubberduck.Settings.GridViewColumnInfo" Scope="Application">
<Setting Name="ToDoGridViewColumnInfo_LineNumber" Type="Rubberduck.Settings.ToDoGridViewColumnInfo" Scope="Application">
<Value Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;DisplayIndex&gt;3&lt;/DisplayIndex&gt;
&lt;Width /&gt;
&lt;/GridViewColumnInfo&gt;</Value>
&lt;/ToDoGridViewColumnInfo&gt;</Value>
</Setting>
</Settings>
</SettingsFile>
16 changes: 8 additions & 8 deletions Rubberduck.Core/app.config
Expand Up @@ -239,38 +239,38 @@
</setting>
<setting name="ToDoGridViewColumnInfo_Description" serializeAs="Xml">
<value>
<GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DisplayIndex>0</DisplayIndex>
<Width />
</GridViewColumnInfo>
</ToDoGridViewColumnInfo>
</value>
</setting>
<setting name="ToDoGridViewColumnInfo_Project" serializeAs="Xml">
<value>
<GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DisplayIndex>1</DisplayIndex>
<Width />
</GridViewColumnInfo>
</ToDoGridViewColumnInfo>
</value>
</setting>
<setting name="ToDoGridViewColumnInfo_Module" serializeAs="Xml">
<value>
<GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DisplayIndex>2</DisplayIndex>
<Width />
</GridViewColumnInfo>
</ToDoGridViewColumnInfo>
</value>
</setting>
<setting name="ToDoGridViewColumnInfo_LineNumber" serializeAs="Xml">
<value>
<GridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<ToDoGridViewColumnInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DisplayIndex>3</DisplayIndex>
<Width />
</GridViewColumnInfo>
</ToDoGridViewColumnInfo>
</value>
</setting>
</Rubberduck.Properties.Settings>
Expand Down

0 comments on commit e82c4b9

Please sign in to comment.