From f4155797a6cdac9d7e249212427f393a9422d8d4 Mon Sep 17 00:00:00 2001 From: Andreas Volz Date: Sun, 4 Nov 2012 12:07:09 +0000 Subject: [PATCH] not sure why, but there was a compile problem. Just commented it out and will later look into... SVN revision: 78898 --- evasxx/include/evasxx/Canvas.h | 2 +- evasxx/src/Canvas.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/evasxx/include/evasxx/Canvas.h b/evasxx/include/evasxx/Canvas.h index 098e23b..bfd31c2 100644 --- a/evasxx/include/evasxx/Canvas.h +++ b/evasxx/include/evasxx/Canvas.h @@ -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 ); diff --git a/evasxx/src/Canvas.cpp b/evasxx/src/Canvas.cpp index 6a824f2..0bac0aa 100644 --- a/evasxx/src/Canvas.cpp +++ b/evasxx/src/Canvas.cpp @@ -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