fixed compilation in MacOSX

This commit is contained in:
Luis Ángel San Martín
2014-11-21 23:49:18 +01:00
parent ca70d6f323
commit a6210d6eee
6 changed files with 6 additions and 5 deletions

View File

@ -114,16 +114,17 @@ QString YACReader::labelColorToRGBString(LabelColors color)
return "#FF9FDD";
#ifdef Q_OS_MAC
case YWhite: case YLight: case YDark:
case YWhite:
return "#E3E3E3";
#else
case YWhite:
return "#FFFFFF";
#endif
case YLight:
return "#C8C8C8";
case YDark:
return "#ABABAB";
#endif
}
}