summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2004-09-26 10:00:24 +0000
committerMurray Cumming <murrayc@src.gnome.org>2004-09-26 10:00:24 +0000
commit0db37d9998f1fb5361c21d1fb0ddcd15ba824778 (patch)
tree35a6fb24e3708f3ef572675491158dbaf428cfc4
parent11fa00d6eb1468f52839c5f6274c2c9528b4bcfe (diff)
downloadglibmm-0db37d9998f1fb5361c21d1fb0ddcd15ba824778.tar.gz
Made a destructor virtual, to avoid a warning, to fix the build.
2004-09-26 Murray Cumming <murrayc@murrayc.com> * examples/thread/dispatcher.cc: Made a destructor virtual, to avoid a warning, to fix the build.
-rw-r--r--ChangeLog4
-rw-r--r--examples/thread/dispatcher.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6fa84ebd..bbafe180 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-26 Murray Cumming <murrayc@murrayc.com>
+
+ * examples/thread/dispatcher.cc: Made a destructor virtual, to avoid
+ a warning, to fix the build.
2004-09-13 Cedric Gustin <cedric.gustin@swing.be>
diff --git a/examples/thread/dispatcher.cc b/examples/thread/dispatcher.cc
index 62c30c08..b6446d5a 100644
--- a/examples/thread/dispatcher.cc
+++ b/examples/thread/dispatcher.cc
@@ -24,7 +24,7 @@ class ThreadProgress
{
public:
explicit ThreadProgress(int id);
- ~ThreadProgress();
+ virtual ~ThreadProgress();
void launch();
void join();