Finished the fusion of the different main_* files, so now we have only one #ifdef...
[quassel.git] / src / common / global.h
index 1f4eb68..49f9750 100644 (file)
@@ -99,6 +99,7 @@ class Global : public QObject {
 
 struct Exception {
     Exception(QString msg = "Unknown Exception") : _msg(msg) {};
+    virtual ~Exception() {}; // make gcc happy
     virtual inline QString msg() { return _msg; }
 
   protected: