Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 320cd69

Browse files
rename the class as well
1 parent 7b27c8b commit 320cd69

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/Main/Base/Project/Editor/CodeCompletion/CodeCompletionOptionPanel.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<gui:OptionPanel x:Class="ICSharpCode.SharpDevelop.Editor.CodeCompletion.CodeCompletionPanel"
1+
<gui:OptionPanel x:Class="ICSharpCode.SharpDevelop.Editor.CodeCompletion.CodeCompletionOptionPanel"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:core="http://icsharpcode.net/sharpdevelop/core"

src/Main/Base/Project/Editor/CodeCompletion/CodeCompletionOptionPanel.xaml.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,16 @@
1818

1919
using System;
2020
using System.Windows;
21-
using ICSharpCode.Core;
2221
using ICSharpCode.SharpDevelop.Gui;
2322

2423
namespace ICSharpCode.SharpDevelop.Editor.CodeCompletion
2524
{
2625
/// <summary>
27-
/// Interaction logic for CodeCompletionPanelXaml.xaml
26+
/// Interaction logic for CodeCompletionOptionPanel.xaml
2827
/// </summary>
29-
public partial class CodeCompletionPanel : OptionPanel
28+
public partial class CodeCompletionOptionPanel : OptionPanel
3029
{
31-
public CodeCompletionPanel()
30+
public CodeCompletionOptionPanel()
3231
{
3332
InitializeComponent();
3433
this.DataContext = this;

src/Main/Base/Project/ICSharpCode.SharpDevelop.addin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2178,7 +2178,7 @@
21782178
<OptionPanel id = "CodeCompletion"
21792179
insertafter="Behavior"
21802180
label = "${res:Dialog.Options.IDEOptions.TextEditor.CodeCompletion.PanelName}"
2181-
class = "ICSharpCode.SharpDevelop.Editor.CodeCompletion.CodeCompletionPanel"/>
2181+
class = "ICSharpCode.SharpDevelop.Editor.CodeCompletion.CodeCompletionOptionPanel"/>
21822182
</Path>
21832183

21842184
<Path name = "/SharpDevelop/Pads/BookmarkPad/Toolbar">

0 commit comments

Comments
 (0)