Fix namespaces and class names

This commit is contained in:
Dean Herbert
2017-06-05 16:47:42 +09:00
parent c3c56820fa
commit af6f8bbd89
11 changed files with 20 additions and 20 deletions

View File

@ -4,6 +4,7 @@
using osu.Framework.Graphics;
using osu.Framework.Testing;
using osu.Game.Graphics.UserInterface;
using osu.Game.Screens.Play;
using osu.Game.Screens.Play.ReplaySettings;
namespace osu.Desktop.VisualTests.Tests
@ -32,7 +33,7 @@ namespace osu.Desktop.VisualTests.Tests
Text = @"Button",
}));
AddStep(@"Add checkbox", () => container.Add(new ReplaySettingsCheckbox
AddStep(@"Add checkbox", () => container.Add(new ReplayCheckbox
{
LabelText = "Checkbox",
}));
@ -46,7 +47,7 @@ namespace osu.Desktop.VisualTests.Tests
}));
}
private class ExampleContainer : ReplaySettingsGroup
private class ExampleContainer : ReplayGroup
{
protected override string Title => @"example";
}