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
This commit is contained in:
Caio Marcelo de Oliveira Filho 2010-03-02 04:53:28 +00:00
parent 92e669a374
commit a7360d509c
2 changed files with 3 additions and 3 deletions

View File

@ -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<Evasxx::Object*>::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<Evasxx::Object*>::iterator eol_it = mEvasObjectList.begin ();
eol_it != mEvasObjectList.end ();
eol_it++)

View File

@ -22,7 +22,7 @@ Smart::Smart ()
Smart::Smart(Canvas &canvas)
{
printf ("Smart constructor\n");
//printf ("Smart constructor\n");
mFree = true;