From a7360d509c8606e5e43b384268b261843843ce43 Mon Sep 17 00:00:00 2001 From: Caio Marcelo de Oliveira Filho Date: Tue, 2 Mar 2010 04:53:28 +0000 Subject: [PATCH] BINDINGS/cxx: comment debug printfs that were breaking compilation Ok, after those commits the C++ bindings should be compilable and the examples should work now. I tested some of them as well tried a hand-maded example. SVN revision: 46777 --- esmartxx/src/esmartxx_group/Group.cpp | 4 ++-- evasxx/src/Smart.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/esmartxx/src/esmartxx_group/Group.cpp b/esmartxx/src/esmartxx_group/Group.cpp index fb21d1c..c5be642 100644 --- a/esmartxx/src/esmartxx_group/Group.cpp +++ b/esmartxx/src/esmartxx_group/Group.cpp @@ -111,7 +111,7 @@ void Group::resizeHandler (const Eflxx::Size &size) void Group::showHandler() { - printf ("Group::showHandler (%p) -> size: %d\n", this, mEvasObjectList.size()); + //printf ("Group::showHandler (%p) -> size: %d\n", this, mEvasObjectList.size()); for (list::iterator eol_it = mEvasObjectList.begin (); eol_it != mEvasObjectList.end (); eol_it++) @@ -123,7 +123,7 @@ void Group::showHandler() void Group::hideHandler() { - printf ("Group::hideHandler (%p) -> size: %d\n", this, mEvasObjectList.size()); + //printf ("Group::hideHandler (%p) -> size: %d\n", this, mEvasObjectList.size()); for (list::iterator eol_it = mEvasObjectList.begin (); eol_it != mEvasObjectList.end (); eol_it++) diff --git a/evasxx/src/Smart.cpp b/evasxx/src/Smart.cpp index b87c265..d6725a7 100644 --- a/evasxx/src/Smart.cpp +++ b/evasxx/src/Smart.cpp @@ -22,7 +22,7 @@ Smart::Smart () Smart::Smart(Canvas &canvas) { - printf ("Smart constructor\n"); + //printf ("Smart constructor\n"); mFree = true;