diff options
| author | RogueAI42 <[email protected]> | 2017-06-18 00:46:38 +1000 |
|---|---|---|
| committer | RogueAI42 <[email protected]> | 2017-06-18 00:46:38 +1000 |
| commit | 8862820bf36719d0e1a1defa19495dc2ccb4cfc1 (patch) | |
| tree | 067cbf211a8efbda230daf6044df2f3eacffcce2 /ShiftOS.WinForms/Applications | |
| parent | 0365b33993812361936e81104f793f58794fde8f (diff) | |
| download | shiftos_thereturn-8862820bf36719d0e1a1defa19495dc2ccb4cfc1.tar.gz shiftos_thereturn-8862820bf36719d0e1a1defa19495dc2ccb4cfc1.tar.bz2 shiftos_thereturn-8862820bf36719d0e1a1defa19495dc2ccb4cfc1.zip | |
AppVeyor
Diffstat (limited to 'ShiftOS.WinForms/Applications')
| -rw-r--r-- | ShiftOS.WinForms/Applications/MindBlow.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ShiftOS.WinForms/Applications/MindBlow.cs b/ShiftOS.WinForms/Applications/MindBlow.cs index 0f0df80..b8e6609 100644 --- a/ShiftOS.WinForms/Applications/MindBlow.cs +++ b/ShiftOS.WinForms/Applications/MindBlow.cs @@ -27,15 +27,15 @@ namespace ShiftOS.WinForms.Applications kc = new KeysConverter(); box = mybox; } - public override bool CanRead => true; + public override bool CanRead { get { return true; } } - public override bool CanSeek => false; + public override bool CanSeek { get { return false; } } - public override bool CanWrite => true; + public override bool CanWrite { get { return true; } } - public override long Length => box.Text.Length; + public override long Length { get { return box.Text.Length; } } - public override long Position { get => Length; set => throw new NotImplementedException(); } + public override long Position { get { return Length; } set { throw new NotImplementedException(); } } public override void Flush() { |
