diff --git a/src/data/set.hpp b/src/data/set.hpp index 6710cee1..7bbfad82 100644 --- a/src/data/set.hpp +++ b/src/data/set.hpp @@ -65,6 +65,7 @@ class Set : public Packaged { void updateFor(const CardP& card); /// Stylesheet to use for a particular card + /** card may be null */ StyleSheetP stylesheetFor(const CardP& card); /// Styling information for a particular stylesheet diff --git a/src/data/stylesheet.hpp b/src/data/stylesheet.hpp index e7f04303..7d8f56ba 100644 --- a/src/data/stylesheet.hpp +++ b/src/data/stylesheet.hpp @@ -51,7 +51,7 @@ class StyleSheet : public Packaged { static StyleSheetP byGameAndName(const Game& game, const String& name); /// name of the package without the game name String stylesheetName() const; - + static String typeNameStatic(); virtual String typeName() const; virtual String fullName() const; diff --git a/src/data/symbol_font.cpp b/src/data/symbol_font.cpp index eb8fde85..d8c88ee1 100644 --- a/src/data/symbol_font.cpp +++ b/src/data/symbol_font.cpp @@ -7,8 +7,96 @@ // ----------------------------------------------------------------------------- : Includes #include +#include +#include +#include