Skip to content

Commit

Permalink
Remove commented code (#63869)
Browse files Browse the repository at this point in the history
  • Loading branch information
wrzucher committed Jan 21, 2022
1 parent b75b558 commit 24348f0
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,6 @@ internal struct StartupInput
{
public int GdiplusVersion; // Must be 1

// public DebugEventProc DebugEventCallback; // Ignored on free builds
public IntPtr DebugEventCallback;

public bool SuppressBackgroundThread; // FALSE unless you're prepared to call
Expand All @@ -1416,7 +1415,6 @@ public static StartupInput GetDefault()
// In Windows 7 GDI+1.1 story is different as there are different binaries per GDI+ version.
bool isWindows7 = os.Platform == PlatformID.Win32NT && os.Version.Major == 6 && os.Version.Minor == 1;
result.GdiplusVersion = isWindows7 ? 1 : 2;
// result.DebugEventCallback = null;
result.SuppressBackgroundThread = false;
result.SuppressExternalCodecs = false;
return result;
Expand Down

0 comments on commit 24348f0

Please sign in to comment.