Code

clean up tabs and DOS-ishness
[inkscape.git] / src / io / inkscapestream.h
index 4388a281567285d7d9c53814678438dc7be0c8db..67c51cc7fa0bf33d463e2c29dd27e39814bc711d 100644 (file)
@@ -27,7 +27,7 @@ public:
         { reason = theReason; }
     StreamException(Glib::ustring &theReason) throw()
         { reason = theReason; }
-    ~StreamException() throw()
+    virtual ~StreamException() throw()
         {  }
     char const *what() const throw()
         { return reason.c_str(); }
@@ -424,7 +424,7 @@ public:
 
     StdReader();
 
-    ~StdReader();
+    virtual ~StdReader();
     
     /*Overload these 3 for your implementation*/
     virtual int available();
@@ -636,7 +636,7 @@ class StdWriter : public BasicWriter
 public:
     StdWriter();
 
-    ~StdWriter();
+    virtual ~StdWriter();
 
 
     virtual void close();