8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d61147 commit f09dd04Copy full SHA for f09dd04
src/ft2font.cpp
@@ -41,7 +41,7 @@
41
FT_Library _ft2Library;
42
43
FT2Image::FT2Image(Py::PythonClassInstance *self, Py::Tuple &args, Py::Dict &kwds) :
44
- Py::PythonClass< FT2Image >::PythonClass(self, args, kwds),
+ Py::PythonClass< FT2Image >(self, args, kwds),
45
_isDirty(true),
46
_buffer(NULL),
47
_width(0), _height(0)
@@ -836,7 +836,7 @@ FT2Font::get_path()
836
PYCXX_NOARGS_METHOD_DECL(FT2Font, get_path)
837
838
FT2Font::FT2Font(Py::PythonClassInstance *self, Py::Tuple &args, Py::Dict &kwds) :
839
- Py::PythonClass<FT2Font>::PythonClass(self, args, kwds),
+ Py::PythonClass<FT2Font>(self, args, kwds),
840
image()
841
{
842
args.verify_length(1);
0 commit comments