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 /smdirmodel.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 'smdirmodel.h')
-rw-r--r-- | smdirmodel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/smdirmodel.h b/smdirmodel.h index 8f000e4..8522662 100644 --- a/smdirmodel.h +++ b/smdirmodel.h @@ -27,7 +27,6 @@ class SmDirModel : public SmTreeModel { enum { NumFields = 9 }; enum FileDate { Access, Modified, Status }; explicit SmDirModel(const QStringList &headers, QObject *parent = 0); - ~SmDirModel(); virtual QVariant data(const QModelIndex &index, int role) const; virtual bool setData(const QModelIndex &index, const QVariant &value, int role); bool isDir(const QModelIndex &idx) const; |