Prevent compiler warnings about unused parameters.
[synfig.git] / synfig-core / trunk / src / synfig / general.h
index 7136afa..dce5542 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file general.h
 **     \brief General macros, classes, and prodecure declarations
 **
-**     $Id: general.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -83,10 +83,10 @@ class ProgressCallback
 public:
 
        virtual ~ProgressCallback() { }
-       virtual bool task(const String &task) { return true; }
-       virtual bool error(const String &task) { return true; }
-       virtual bool warning(const String &task) { return true; }
-       virtual bool amount_complete(int current, int total) { return true; }
+       virtual bool task(const String &/*task*/) { return true; }
+       virtual bool error(const String &/*task*/) { return true; }
+       virtual bool warning(const String &/*task*/) { return true; }
+       virtual bool amount_complete(int /*current*/, int /*total*/) { return true; }
 
        virtual bool valid() const { return true; }
 };