Skip to content

Commit ef81043

Browse files
committed
Clean Code empty spaces
1 parent 4e63afb commit ef81043

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

VS-QuickNavigation/Commands/QuickPasteCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ protected override void WndProc(ref System.Windows.Forms.Message m)
132132
if (m_hNextClipboardViewer.ToInt64() != 0)
133133
{
134134
SendMessage(m_hNextClipboardViewer, m.Msg, m.WParam, m.LParam);
135-
}
135+
}
136136
break;
137137

138138
case WM_CHANGECBCHAIN:

VS-QuickNavigation/Data/SymbolData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public string ScopePretty
5656
return "";
5757

5858
int index = sScope.IndexOf(':');
59-
59+
6060
if (index != -1)
6161
sScope = sScope.Substring(index+1);
6262

VS-QuickNavigation/ToolWindow/QuickFile/QuickFileToolWindowControl.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</ResourceDictionary.MergedDictionaries>
1616
</ResourceDictionary>
1717
</UserControl.Resources>
18-
18+
1919
<DockPanel Width="Auto" Height="Auto" LastChildFill="True" Margin="10">
2020
<TextBox x:Name="textBox"
2121
DockPanel.Dock="Top" Width="Auto"

VS-QuickNavigation/ToolWindow/QuickMethod/QuickMethodToolWindowControl.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public SymbolTypeWrapper(ESymbolType eType, QuickMethodToolWindowControl control
2626
QuickMethodToolWindowControl mControl;
2727

2828
ESymbolType Type { get; set; }
29-
29+
3030
public bool IsSelected
3131
{
3232
get
@@ -73,7 +73,7 @@ public string Description
7373
private CancellationTokenSource mToken;
7474
private Task mTask;
7575
private DeferredAction mDeferredRefresh;
76-
76+
7777
const int c_RefreshDelay = 100;
7878

7979
public IEnumerable<SymbolTypeWrapper> SuportedSymbolTypes

VS-QuickNavigation/VSQuickNavigationPackage.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ protected override void Dispose(bool disposing)
9696
QuickPasteCommand.Dispose(this);
9797

9898
Common.Instance.SolutionWatcher.Dispose();
99-
Utils.CTagsGenerator.CTagsTask.GetInstance().Dispose(); ;
99+
Utils.CTagsGenerator.CTagsTask.GetInstance().Dispose();
100+
100101
}
101102

102103
#endregion Package Members

0 commit comments

Comments
 (0)