not sure why, but there was a compile problem. Just commented it out and will later look into...

SVN revision: 78898
This commit is contained in:
Andreas Volz 2012-11-04 12:07:09 +00:00
parent 3835fd7284
commit f4155797a6
2 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@ public:
* @param o The C to to be wrapped.
* @return The wrapped C++ type.
*/
static Canvas *wrap (Evas *evas);
//static Canvas *wrap (Evas *evas);
private:
Canvas( Evas* evas );

View File

@ -175,10 +175,10 @@ Canvas *Canvas::wrap (Evas_Object *o)
return new Canvas (evas_object_evas_get (o));
}
Canvas *Canvas::wrap (Evas *evas)
/*Canvas *Canvas::wrap (Evas *evas)
{
return new Canvas (evas);
}
}*/
} // end namespace Evasxx