Skip to content

Commit

Permalink
PangoFontInfo: Remove unused method is_italic
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Jul 16, 2017
1 parent 0cd71c6 commit 5a7b7ed
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions training/pango_font_info.cpp
Expand Up @@ -88,7 +88,6 @@ PangoFontInfo::PangoFontInfo(const string& desc)

void PangoFontInfo::Clear() {
font_size_ = 0;
is_italic_ = false;
family_name_.clear();
font_type_ = UNKNOWN;
if (desc_) {
Expand Down Expand Up @@ -188,10 +187,6 @@ bool PangoFontInfo::ParseFontDescription(const PangoFontDescription *desc) {
font_size_ /= PANGO_SCALE;
}

PangoStyle style = pango_font_description_get_style(desc);
is_italic_ = (PANGO_STYLE_ITALIC == style ||
PANGO_STYLE_OBLIQUE == style);

return true;
}

Expand Down
2 changes: 0 additions & 2 deletions training/pango_font_info.h
Expand Up @@ -105,7 +105,6 @@ class PangoFontInfo {
const string& family_name() const { return family_name_; }
// Size in points (1/72"), rounded to the nearest integer.
int font_size() const { return font_size_; }
bool is_italic() const { return is_italic_; }
FontTypeEnum font_type() const { return font_type_; }

int resolution() const { return resolution_; }
Expand All @@ -124,7 +123,6 @@ class PangoFontInfo {
// Font properties set automatically from parsing the font description name.
string family_name_;
int font_size_;
bool is_italic_;
FontTypeEnum font_type_;
// The Pango description that was used to initialize the instance.
PangoFontDescription* desc_;
Expand Down

0 comments on commit 5a7b7ed

Please sign in to comment.