Fixing some warnings (#6250)

Co-authored-by: Paul Ritter <ritter.paul1@googlemail.com>
This commit is contained in:
wrexbe
2022-01-21 01:38:35 -08:00
committed by GitHub
parent 29b22e2871
commit cea1b21832
191 changed files with 341 additions and 340 deletions

View File

@@ -1,4 +1,4 @@
<SS14Window xmlns="https://spacestation14.io"
<DefaultWindow xmlns="https://spacestation14.io"
Title="{Loc 'research-client-server-selection-menu-title'}"
MinSize="300 300"
SetSize="300 300">
@@ -6,4 +6,4 @@
SelectMode="Single">
<!-- Servers are added here by code -->
</ItemList>
</SS14Window>
</DefaultWindow>

View File

@@ -8,7 +8,7 @@ using Robust.Shared.Localization;
namespace Content.Client.Research.UI
{
[GenerateTypedNameReferences]
public partial class ResearchClientServerSelectionMenu : SS14Window
public partial class ResearchClientServerSelectionMenu : DefaultWindow
{
private int _serverCount;
private string[] _serverNames = System.Array.Empty<string>();

View File

@@ -1,4 +1,4 @@
<SS14Window xmlns="https://spacestation14.io"
<DefaultWindow xmlns="https://spacestation14.io"
Title="{Loc 'research-console-menu-title'}"
MinSize="800 400"
SetSize="800 400">
@@ -84,4 +84,4 @@
</BoxContainer>
</BoxContainer>
</BoxContainer>
</SS14Window>
</DefaultWindow>

View File

@@ -13,7 +13,7 @@ using Robust.Shared.Prototypes;
namespace Content.Client.Research.UI
{
[GenerateTypedNameReferences]
public partial class ResearchConsoleMenu : SS14Window
public partial class ResearchConsoleMenu : DefaultWindow
{
public ResearchConsoleBoundUserInterface Owner { get; }