Skip to content

Commit

Permalink
allow compilation on standart visual 2015
Browse files Browse the repository at this point in the history
  • Loading branch information
Sardau committed Feb 28, 2019
1 parent 95864c3 commit 3edbacc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LaserGRBL/Autotrace/Autotrace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace LaserGRBL
{
public class Autotrace
{
public static string TempPath { get => $"{GrblCore.DataPath}\\Autotrace\\"; }
public static string TempPath { get { return $"{GrblCore.DataPath}\\Autotrace\\"; } }

public static void CleanupTmpFolder()
{
Expand Down
4 changes: 2 additions & 2 deletions LaserGRBL/RasterConverter/ImageProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ private static Size CalculateResizeToFit(Size imageSize, Size boxSize)

public Bitmap Original { get { return mResized; } }

public int FileDPI { get => mFileDPI; }
public Size FileResolution { get => mFileResolution; }
public int FileDPI { get { return mFileDPI; } }
public Size FileResolution { get { return mFileResolution; } }
}
}

0 comments on commit 3edbacc

Please sign in to comment.