diff options
author | Arno <am@disconnect.de> | 2013-06-01 11:33:56 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-06-01 11:33:56 +0200 |
commit | 7e3d21cb6a9e8142b7132fe8fdae7a844b505006 (patch) | |
tree | 7e6d0329a7c35ffa0b4f43893c163463cb5f65e0 /smdirwatcher.h | |
parent | 376d2fbb78114e746618f14afe7728cf9793630b (diff) | |
download | SheMov-7e3d21cb6a9e8142b7132fe8fdae7a844b505006.tar.gz SheMov-7e3d21cb6a9e8142b7132fe8fdae7a844b505006.tar.bz2 SheMov-7e3d21cb6a9e8142b7132fe8fdae7a844b505006.zip |
Don't clean up after ourselves
Don't delete threads and stuff in destructors. It leads to SIGARBRT when
debugging. Now we get a warning on close, but who cares?
Diffstat (limited to 'smdirwatcher.h')
-rw-r--r-- | smdirwatcher.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/smdirwatcher.h b/smdirwatcher.h index 3a30360..5f3ef55 100644 --- a/smdirwatcher.h +++ b/smdirwatcher.h @@ -27,7 +27,6 @@ class SmDirWatcher : public QThread { enum DWEvent { None, Added, Deleted, Modified, Populate }; explicit SmDirWatcher(int numFields, QObject *parent = 0); SmDataColletor *collector() { return mCollector; } - ~SmDirWatcher(); signals: void dwEvent(const QString& file, int event); |