fixed compilation warnings in YACReaderLibrary.pro, at least using vc++ compiler

This commit is contained in:
Luis Ángel San Martín
2016-03-26 11:31:25 +01:00
parent 20c01cca8c
commit 4b8462459a
11 changed files with 85 additions and 16 deletions

View File

@ -41,6 +41,8 @@ QString YACReader::colorToName(LabelColors colors)
case YDark:
return "dark";
}
return "";
}
QString YACReader::labelColorToRGBString(LabelColors color)
@ -84,7 +86,7 @@ QString YACReader::labelColorToRGBString(LabelColors color)
return "#C8C8C8";
case YDark:
return "#ABABAB";
}
return "";
}