Don't show so many info level messages.
[synfig.git] / synfig-core / trunk / src / synfig / context.cpp
index 60847fe..1ebc636 100644 (file)
@@ -1,8 +1,8 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file template.cpp
+/*!    \file context.cpp
 **     \brief Template File
 **
-**     $Id: context.cpp,v 1.4 2005/01/24 05:00:18 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -128,10 +128,10 @@ Context::get_full_bounding_rect()const
                ++context;
        }
 
-       if(context->empty())
-               return Rect::zero();
+       // If this layer isn't defined, return zero-sized rectangle
+       if(context->empty()) return Rect::zero();
 
-       return (*context)->get_full_bounding_rect(*this+1);
+       return (*context)->get_full_bounding_rect(context+1);
 }
 
 
@@ -286,7 +286,7 @@ Context::set_time(Time time)const
        // If this layer isn't defined, just return
        if((context)->empty()) return;
 
-       // Set up a wrter lock
+       // Set up a writer lock
        RWLock::WriterLock lock((*context)->get_rw_lock());
 
        //synfig::info("%s: dirty_time=%f",(*context)->get_name().c_str(),(float)(*context)->dirty_time_);
@@ -308,7 +308,7 @@ Context::set_time(Time time)const
 }
 
 void
-Context::set_time(Time time,const Vector &pos)const
+Context::set_time(Time time,const Vector &/*pos*/)const
 {
        set_time(time);
 /*