From 34b3b94c5f98e44ca6e3e8f5c1d48cf9791daae7 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Thu, 26 Sep 2013 14:48:59 +0200 Subject: [PATCH] reporting: series: tableRowColor add missing check --- matlab/reports/@series/write.m | 1 + 1 file changed, 1 insertion(+) diff --git a/matlab/reports/@series/write.m b/matlab/reports/@series/write.m index 2511b9944..29c47ddcb 100644 --- a/matlab/reports/@series/write.m +++ b/matlab/reports/@series/write.m @@ -45,6 +45,7 @@ end assert(ischar(o.tableNegColor), '@series.write: tableNegColor must be a string'); assert(ischar(o.tablePosColor), '@series.write: tablePosColor must be a string'); +assert(ischar(o.tableRowColor), '@series.write: tableRowColor must be a string'); assert(islogical(o.tableShowMarkers), '@series.write: tableShowMarkers must be true or false'); assert(islogical(o.tableAlignRight), '@series.write: tableAlignRight must be true or false'); assert(isfloat(o.tableMarkerLimit), '@series,write: tableMarkerLimit must be a float');