X Tutup
Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ft2font.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Glyph : public Py::PythonClass<Glyph>
{
public:
Glyph(Py::PythonClassInstance *self, Py::Tuple &args, Py::Dict &kwds) :
Py::PythonClass<Glyph>::PythonClass(self, args, kwds) { }
Py::PythonClass<Glyph>(self, args, kwds) { }
virtual ~Glyph();
static Py::PythonClassObject<Glyph> factory(const FT_Face&, const FT_Glyph&, size_t, long);
int setattro(const Py::String &name, const Py::Object &value);
Expand Down
X Tutup