Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main/HSSF/UserModel/HSSFExtendedColor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public override byte[] ARGB
}
}

protected override byte[] StoredRBG
protected override byte[] StoredRGB
{
get
{
Expand Down
6 changes: 3 additions & 3 deletions main/SS/UserModel/ExtendedColor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public virtual short Indexed
/**
* RGB or ARGB or null
*/
protected abstract byte[] StoredRBG { get; }
protected abstract byte[] StoredRGB { get; }


protected byte[] GetRGBOrARGB()
Expand All @@ -106,7 +106,7 @@ protected byte[] GetRGBOrARGB()
}

// Grab the colour
return StoredRBG;
return StoredRGB;
}

/**
Expand All @@ -117,7 +117,7 @@ public byte[] RGBWithTint
{
get
{
byte[] rgb = StoredRBG;
byte[] rgb = StoredRGB;
if (rgb != null)
{
if (rgb.Length == 4)
Expand Down
2 changes: 1 addition & 1 deletion ooxml/XSSF/UserModel/XSSFColor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public byte[] GetRgb()
return this.RGB;
}

protected override byte[] StoredRBG
protected override byte[] StoredRGB
{
get
{
Expand Down