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"
xmlns:ui="clr-namespace:Content.Client.Kitchen.UI"
Title="{Loc grinder-menu-title}" MinSize="512 256" SetSize="512 256">
<BoxContainer Orientation="Horizontal">
@@ -12,4 +12,4 @@
<Control MinSize="8 0"/>
<ui:LabelledContentBox Name="BeakerContentBox" LabelText="{Loc grinder-menu-beaker-content-box-label}" ButtonText="{Loc grinder-menu-beaker-content-box-button}" VerticalExpand="True" HorizontalExpand="True" SizeFlagsStretchRatio="2"/>
</BoxContainer>
</SS14Window>
</DefaultWindow>

View File

@@ -16,7 +16,7 @@ using Robust.Shared.Prototypes;
namespace Content.Client.Kitchen.UI
{
[GenerateTypedNameReferences]
public partial class GrinderMenu : SS14Window
public partial class GrinderMenu : DefaultWindow
{
private readonly IEntityManager _entityManager;
private readonly IPrototypeManager _prototypeManager ;

View File

@@ -1,4 +1,4 @@
<SS14Window xmlns="https://spacestation14.io"
<DefaultWindow xmlns="https://spacestation14.io"
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
Title="{Loc 'microwave-menu-title'}"
SetSize="512 256"
@@ -80,4 +80,4 @@
<gfx:StyleBoxFlat BackgroundColor="#00000099" />
</PanelContainer.PanelOverride>
</PanelContainer>
</SS14Window>
</DefaultWindow>

View File

@@ -8,7 +8,7 @@ using Robust.Shared.Localization;
namespace Content.Client.Kitchen.UI
{
[GenerateTypedNameReferences]
public partial class MicrowaveMenu : SS14Window
public partial class MicrowaveMenu : DefaultWindow
{
public class MicrowaveCookTimeButton : Button
{