X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftags%2Fstable%2Fsrc%2Fsynfig%2Fgeneral.h;h=38b4565486a206bb030cb73cba0824c084836747;hb=684cf1db661a9a5cbc142238cf05d6d2f7aa3f89;hp=43e768d94664654915232fe72594f4187e5d5999;hpb=40dd10f62f1b0983b20cf99dd4780ea73236eb0c;p=synfig.git diff --git a/synfig-core/tags/stable/src/synfig/general.h b/synfig-core/tags/stable/src/synfig/general.h index 43e768d..38b4565 100644 --- a/synfig-core/tags/stable/src/synfig/general.h +++ b/synfig-core/tags/stable/src/synfig/general.h @@ -1,6 +1,6 @@ /* === S Y N F I G ========================================================= */ /*! \file general.h -** \brief General macros, classes, and prodecure declarations +** \brief General macros, classes, and procedure declarations ** ** $Id$ ** @@ -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; } };