bool GB = false;Aryan KrishnanMake this consistently lowercase.
Thought GB (I assumed Great Britain) was an acronym and hence should be all-caps. Edited now.
struct CharsetFlags {Aryan KrishnanCan this be part of FontFaceInfo instead of being in the global namespace?
GetCharset() is in an anonymous namespace (not in the class), yet needs to use these variables. Moving this to the class just makes it fail. To address this am moving GetCharset() into the class as a private: method
struct CharsetFlags {Aryan KrishnanHave you considered using fxcrt::Mask?
Right, that would have worked better here. Done.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
struct CharsetFlags {Aryan KrishnanCan this be part of FontFaceInfo instead of being in the global namespace?
GetCharset() is in an anonymous namespace (not in the class), yet needs to use these variables. Moving this to the class just makes it fail. To address this am moving GetCharset() into the class as a private: method
Edit, it can't be public in FontFaceInfo, had to make it private due to accessors outside of FontFaceInfo but in the file.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
struct CharsetFlags {Aryan KrishnanCan this be part of FontFaceInfo instead of being in the global namespace?
Aryan KrishnanGetCharset() is in an anonymous namespace (not in the class), yet needs to use these variables. Moving this to the class just makes it fail. To address this am moving GetCharset() into the class as a private: method
Edit, it can't be public in FontFaceInfo, had to make it private due to accessors outside of FontFaceInfo but in the file.
Edit: replace public with private and private with public
bool GB = false;Aryan KrishnanMake this consistently lowercase.
Thought GB (I assumed Great Britain) was an acronym and hence should be all-caps. Edited now.
"Shift JIS" was lowercased as well.
fxcrt::Mask<CFX_FolderFontInfo::FontFaceInfo::CharsetFlags>Should this return a singular value and not a Mask? Same for IsEligibleForFindFont().
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
fxcrt::Mask<CFX_FolderFontInfo::FontFaceInfo::CharsetFlags>Should this return a singular value and not a Mask? Same for IsEligibleForFindFont().
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |