Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/FFmpegWriterForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace BizHawk.Client.EmuHawk
/// <summary>
/// configures the FFmpegWriter
/// </summary>
public partial class FFmpegWriterForm : Form
public partial class FFmpegWriterForm : FormBase
{
/// <summary>
/// stores a single format preset
Expand Down
2 changes: 1 addition & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/GifWriterForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace BizHawk.Client.EmuHawk
{
public partial class GifWriterForm : Form
public partial class GifWriterForm : FormBase
{
public GifWriterForm()
{
Expand Down
2 changes: 1 addition & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/JMDForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace BizHawk.Client.EmuHawk
/// <summary>
/// implements a minimal dialog for configuring JMDWriter
/// </summary>
public partial class JmdForm : Form
public partial class JmdForm : FormBase
{
public JmdForm()
{
Expand Down
2 changes: 1 addition & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;

Check warning on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build and package output

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check warning on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build and package output

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build solution with analyzers

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build solution with analyzers

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

using BizHawk.Bizware.Graphics;
using BizHawk.Client.Common;
Expand All @@ -10,7 +10,7 @@

namespace BizHawk.Client.EmuHawk
{
public partial class SynclessRecordingTools : Form, IDialogParent
public partial class SynclessRecordingTools : FormBase, IDialogParent
{
private readonly Config _config;

Expand Down
2 changes: 1 addition & 1 deletion src/BizHawk.Client.EmuHawk/ArchiveChooser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace BizHawk.Client.EmuHawk
{
public partial class ArchiveChooser : Form
public partial class ArchiveChooser : FormBase
{
private readonly IList<ListViewItem> _archiveItems = new List<ListViewItem>();
private readonly ToolTip _errorBalloon = new ToolTip();
Expand Down
2 changes: 1 addition & 1 deletion src/BizHawk.Client.EmuHawk/config/AutofireConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace BizHawk.Client.EmuHawk
{
public partial class AutofireConfig : Form
public partial class AutofireConfig : FormBase
{
private readonly Config _config;
private readonly AutofireController _autoFireController;
Expand Down
2 changes: 1 addition & 1 deletion src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace BizHawk.Client.EmuHawk
{
public partial class ControllerConfig : Form, IDialogParent
public partial class ControllerConfig : FormBase, IDialogParent
{
private static readonly Dictionary<string, Lazy<Bitmap>> ControllerImages = new Dictionary<string, Lazy<Bitmap>>();
private readonly IEmulator _emulator;
Expand Down
Loading