Skip to content

Commit b15d28b

Browse files
committed
Update color strings
1 parent eb880bf commit b15d28b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

QRCoder/PostscriptQRCode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ sc sc scale
142142

143143
public static class PostscriptQRCodeHelper
144144
{
145-
public static string GetQRCode(string plainText, int pointsPerModule, string? darkColorHex, string? lightColorHex, ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, EciMode eciMode = EciMode.Default, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false)
145+
public static string GetQRCode(string plainText, int pointsPerModule, string darkColorHex, string lightColorHex, ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, EciMode eciMode = EciMode.Default, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false)
146146
{
147147
using (var qrGenerator = new QRCodeGenerator())
148148
using (var qrCodeData = qrGenerator.CreateQrCode(plainText, eccLevel, forceUtf8, utf8BOM, eciMode, requestedVersion))

QRCoderApiTests/net35+net40+net50+net50-windows+netstandard20/QRCoder.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ namespace QRCoder
856856
}
857857
public static class PostscriptQRCodeHelper
858858
{
859-
public static string GetQRCode(string plainText, int pointsPerModule, string? darkColorHex, string? lightColorHex, QRCoder.QRCodeGenerator.ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, QRCoder.QRCodeGenerator.EciMode eciMode = 0, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false) { }
859+
public static string GetQRCode(string plainText, int pointsPerModule, string darkColorHex, string lightColorHex, QRCoder.QRCodeGenerator.ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, QRCoder.QRCodeGenerator.EciMode eciMode = 0, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false) { }
860860
}
861861
public class QRCode : QRCoder.AbstractQRCode, System.IDisposable
862862
{

QRCoderApiTests/net60-windows/QRCoder.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ namespace QRCoder
863863
}
864864
public static class PostscriptQRCodeHelper
865865
{
866-
public static string GetQRCode(string plainText, int pointsPerModule, string? darkColorHex, string? lightColorHex, QRCoder.QRCodeGenerator.ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, QRCoder.QRCodeGenerator.EciMode eciMode = 0, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false) { }
866+
public static string GetQRCode(string plainText, int pointsPerModule, string darkColorHex, string lightColorHex, QRCoder.QRCodeGenerator.ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, QRCoder.QRCodeGenerator.EciMode eciMode = 0, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false) { }
867867
}
868868
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
869869
public class QRCode : QRCoder.AbstractQRCode, System.IDisposable

QRCoderApiTests/net60/QRCoder.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ namespace QRCoder
807807
}
808808
public static class PostscriptQRCodeHelper
809809
{
810-
public static string GetQRCode(string plainText, int pointsPerModule, string? darkColorHex, string? lightColorHex, QRCoder.QRCodeGenerator.ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, QRCoder.QRCodeGenerator.EciMode eciMode = 0, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false) { }
810+
public static string GetQRCode(string plainText, int pointsPerModule, string darkColorHex, string lightColorHex, QRCoder.QRCodeGenerator.ECCLevel eccLevel, bool forceUtf8 = false, bool utf8BOM = false, QRCoder.QRCodeGenerator.EciMode eciMode = 0, int requestedVersion = -1, bool drawQuietZones = true, bool epsFormat = false) { }
811811
}
812812
public class QRCodeData : System.IDisposable
813813
{

0 commit comments

Comments
 (0)