From: joncruz Date: Wed, 27 May 2009 08:10:11 +0000 (+0000) Subject: Fixed non-ASCII characters in source file. Added missing virtual dtor. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0fc4cd0fac268e518f05a0361107329b395875d2;p=inkscape.git Fixed non-ASCII characters in source file. Added missing virtual dtor. --- diff --git a/src/preferences.h b/src/preferences.h index 4e3d0732c..d8706a501 100644 --- a/src/preferences.h +++ b/src/preferences.h @@ -2,7 +2,7 @@ * @brief Singleton class to access the preferences file in a convenient way. */ /* Authors: - * Krzysztof Kosiński + * Krzysztof Kosi_ski * Jon A. Cruz * * Copyright (C) 2008,2009 Authors @@ -28,6 +28,7 @@ namespace Inkscape { class ErrorReporter { public: + virtual ~ErrorReporter() {} virtual void handleError(Glib::ustring const& primary, Glib::ustring const& secondary ) const = 0; };