Index: Source/platform/fonts/FontDescription.h |
diff --git a/Source/platform/fonts/FontDescription.h b/Source/platform/fonts/FontDescription.h |
index 263e583509c9419a77f794601857037a4992f37a..7adfba4db024c397e9bdb96de818426d9a2393bb 100644 |
--- a/Source/platform/fonts/FontDescription.h |
+++ b/Source/platform/fonts/FontDescription.h |
@@ -89,11 +89,11 @@ public: |
bool operator!=(const FontDescription& other) const { return !(*this == other); } |
struct VariantLigatures { |
- VariantLigatures() |
- : common(NormalLigaturesState) |
- , discretionary(NormalLigaturesState) |
- , historical(NormalLigaturesState) |
- , contextual(NormalLigaturesState) |
+ VariantLigatures(LigaturesState state = NormalLigaturesState) |
+ : common(state) |
+ , discretionary(state) |
+ , historical(state) |
+ , contextual(state) |
{ |
} |