File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -93,15 +93,15 @@ class PangoFontInfo {
93
93
// Font Family name eg. "Arial"
94
94
const string& family_name () const { return family_name_; }
95
95
// Size in points (1/72"), rounded to the nearest integer.
96
- const int font_size () const { return font_size_; }
97
- const bool is_bold () const { return is_bold_; }
98
- const bool is_italic () const { return is_italic_; }
99
- const bool is_smallcaps () const { return is_smallcaps_; }
100
- const bool is_monospace () const { return is_monospace_; }
101
- const bool is_fraktur () const { return is_fraktur_; }
102
- const FontTypeEnum font_type () const { return font_type_; }
103
-
104
- const int resolution () const { return resolution_; }
96
+ int font_size () const { return font_size_; }
97
+ bool is_bold () const { return is_bold_; }
98
+ bool is_italic () const { return is_italic_; }
99
+ bool is_smallcaps () const { return is_smallcaps_; }
100
+ bool is_monospace () const { return is_monospace_; }
101
+ bool is_fraktur () const { return is_fraktur_; }
102
+ FontTypeEnum font_type () const { return font_type_; }
103
+
104
+ int resolution () const { return resolution_; }
105
105
void set_resolution (const int resolution) {
106
106
resolution_ = resolution;
107
107
}
Original file line number Diff line number Diff line change @@ -130,10 +130,10 @@ class StringRenderer {
130
130
const PangoFontInfo& font () const {
131
131
return font_;
132
132
}
133
- const int h_margin () const {
133
+ int h_margin () const {
134
134
return h_margin_;
135
135
}
136
- const int v_margin () const {
136
+ int v_margin () const {
137
137
return v_margin_;
138
138
}
139
139
You can’t perform that action at this time.
0 commit comments