chore: fix some warnings, cleanup

This commit is contained in:
goat 2022-04-25 20:04:17 +02:00
parent 9a38a9470c
commit 96ed22534c
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5
49 changed files with 413 additions and 440 deletions

View file

@ -72,7 +72,7 @@ namespace Dalamud.Interface.Internal.Windows
private bool resolveGameData = false;
private bool resolveObjects = false;
private UIDebug addonInspector = null;
private UiDebug addonInspector = null;
private Hook<MessageBoxWDelegate>? messageBoxMinHook;
private bool hookUseMinHook = false;
@ -877,7 +877,7 @@ namespace Dalamud.Interface.Internal.Windows
private void DrawAddonInspector()
{
this.addonInspector ??= new UIDebug();
this.addonInspector ??= new UiDebug();
this.addonInspector.Draw();
}