Skip to content

Commit

Permalink
PangoFontInfo: Remove unused method is_smallcaps
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Jun 3, 2017
1 parent 8786e56 commit 0d411cb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions training/pango_font_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ void PangoFontInfo::Clear() {
font_size_ = 0;
is_bold_ = false;
is_italic_ = false;
is_smallcaps_ = false;
family_name_.clear();
font_type_ = UNKNOWN;
if (desc_) {
Expand Down Expand Up @@ -193,8 +192,6 @@ bool PangoFontInfo::ParseFontDescription(const PangoFontDescription *desc) {
PangoStyle style = pango_font_description_get_style(desc);
is_italic_ = (PANGO_STYLE_ITALIC == style ||
PANGO_STYLE_OBLIQUE == style);
is_smallcaps_ = (pango_font_description_get_variant(desc)
== PANGO_VARIANT_SMALL_CAPS);

is_bold_ = (pango_font_description_get_weight(desc) >= PANGO_WEIGHT_BOLD);
return true;
Expand Down
2 changes: 0 additions & 2 deletions training/pango_font_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ class PangoFontInfo {
int font_size() const { return font_size_; }
bool is_bold() const { return is_bold_; }
bool is_italic() const { return is_italic_; }
bool is_smallcaps() const { return is_smallcaps_; }
FontTypeEnum font_type() const { return font_type_; }

int resolution() const { return resolution_; }
Expand All @@ -128,7 +127,6 @@ class PangoFontInfo {
int font_size_;
bool is_bold_;
bool is_italic_;
bool is_smallcaps_;
FontTypeEnum font_type_;
// The Pango description that was used to initialize the instance.
PangoFontDescription* desc_;
Expand Down

0 comments on commit 0d411cb

Please sign in to comment.