From fe6e4bc7cdae9ff5d462b804bf147f3402769e46 Mon Sep 17 00:00:00 2001 From: Damon McDougall Date: Wed, 3 Jul 2013 15:55:53 -0400 Subject: [PATCH] Fix compilation on Solaris --- src/ft2font.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ft2font.h b/src/ft2font.h index c86835b91540..661131321911 100644 --- a/src/ft2font.h +++ b/src/ft2font.h @@ -81,7 +81,7 @@ class Glyph : public Py::PythonClass { public: Glyph(Py::PythonClassInstance *self, Py::Tuple &args, Py::Dict &kwds) : - Py::PythonClass::PythonClass(self, args, kwds) { } + Py::PythonClass(self, args, kwds) { } virtual ~Glyph(); static Py::PythonClassObject factory(const FT_Face&, const FT_Glyph&, size_t, long); int setattro(const Py::String &name, const Py::Object &value);