Skip to content

Commit 02146d2

Browse files
author
LoneWandererProductions
committed
Fix up my usings. somehow they got lost.
Update Lector to the latest working version. Prepare to replace my old loader
1 parent 74a2f45 commit 02146d2

102 files changed

Lines changed: 1967 additions & 874 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CommonControls.Images/ColorPick.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* https://en.wikipedia.org/wiki/HSL_and_HSV#From_HSV
1111
*/
1212

13+
using System;
1314
using System.Drawing;
1415
using System.Drawing.Imaging;
1516
using Imaging;

CommonControls.Images/ColorPicker.xaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
// ReSharper disable UnusedMember.Global
1111
// ReSharper disable MemberCanBePrivate.Global
1212

13+
using System;
1314
using System.ComponentModel;
1415
using System.Windows;
1516
using System.Windows.Input;

CommonControls.Images/ColorProcessing.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* SOURCE: https://stackoverflow.com/questions/42531608/hsv-triangle-in-c-sharp
88
*/
99

10+
using System;
1011
using ExtendedSystemObjects;
1112

1213
namespace CommonControls.Images

CommonControls.Images/ColorSelection.xaml.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
* PROGRAMER: Peter Geinitz (Wayfarer)
77
*/
88

9+
using System;
10+
using System.Collections.Generic;
11+
using System.Linq;
912
using System.Reflection;
1013
using System.Windows;
1114
using System.Windows.Controls;

CommonControls.Images/ExtendedGrid.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
// ReSharper disable ArrangeBraces_for
1212
// ReSharper disable UnusedMember.Global, basic Dummy for later use
1313

14+
using System;
15+
using System.Collections.Generic;
1416
using System.Windows;
1517
using System.Windows.Controls;
1618
using System.Windows.Media;

CommonControls.Images/ImageEventArgs.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* PROGRAMER: Peter Geinitz (Wayfarer)
77
*/
88

9+
using System;
10+
911
namespace CommonControls.Images
1012
{
1113
/// <inheritdoc />

CommonControls.Images/ImageZoom.xaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
*/
8787

8888

89+
using System;
8990
using System.Diagnostics;
9091
using System.IO;
9192
using System.Windows;

CommonControls.Images/SelectionAdorner.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
// ReSharper disable BadBracesSpaces
1010
// ReSharper disable MissingSpace
1111

12+
using System.Collections.Generic;
13+
using System.Linq;
1214
using System.Windows;
1315
using System.Windows.Documents;
1416
using System.Windows.Input;

CommonControls.Images/Thumbnails.xaml.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,14 @@
1414
// ReSharper disable UnusedType.Global
1515
// ReSharper disable UnusedMember.Global
1616

17+
using System;
1718
using System.Collections.Concurrent;
19+
using System.Collections.Generic;
1820
using System.Diagnostics;
1921
using System.IO;
22+
using System.Linq;
23+
using System.Threading;
24+
using System.Threading.Tasks;
2025
using System.Windows;
2126
using System.Windows.Controls;
2227
using System.Windows.Input;

CoreBuilder/CommandFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ public static IReadOnlyList<ICodeAnalyzer> GetAllAnalyzers()
9696
return modules;
9797
}
9898
}
99-
}
99+
}

0 commit comments

Comments
 (0)