summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2009-05-27 08:10:11 +0000
committerjoncruz <joncruz@users.sourceforge.net>2009-05-27 08:10:11 +0000
commit23019cecb41253a4d412dc14c155e858e0e7b7cb (patch)
tree019253bc190fd7829f0f38f8b30b1d7285928306
parentRemoving reference to purged directory. (diff)
downloadinkscape-23019cecb41253a4d412dc14c155e858e0e7b7cb.tar.gz
inkscape-23019cecb41253a4d412dc14c155e858e0e7b7cb.zip
Fixed non-ASCII characters in source file. Added missing virtual dtor.
(bzr r7951)
-rw-r--r--src/preferences.h3
1 files changed, 2 insertions, 1 deletions
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 <tweenk.pl@gmail.com>
+ * Krzysztof Kosi_ski <tweenk.pl@gmail.com>
* Jon A. Cruz <jon@joncruz.org>
*
* 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;
};