diff options
author | Arno <arno@disconnect.de> | 2017-12-21 07:50:14 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2017-12-21 07:50:14 +0100 |
commit | 3bed96abe0f58611e557f863763c412164c3cfa0 (patch) | |
tree | d1e3f6d5a923752f933c10d48ed539e2ecfd929d /filewidget.h | |
parent | c0d9d2f61b53b42657ac9cc9b601cab5f308ac10 (diff) | |
download | ShemovCleaner-3bed96abe0f58611e557f863763c412164c3cfa0.tar.gz ShemovCleaner-3bed96abe0f58611e557f863763c412164c3cfa0.tar.bz2 ShemovCleaner-3bed96abe0f58611e557f863763c412164c3cfa0.zip |
Removed QSignalMapper from filewidget.cpp
Since the advent of lambdas as SLOTS the signal mapper is indeed useless
und overly complicated. Remove it due to a deprecation warning from the
compiler.
Diffstat (limited to 'filewidget.h')
-rw-r--r-- | filewidget.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/filewidget.h b/filewidget.h index 458d3eb..b4c94e3 100644 --- a/filewidget.h +++ b/filewidget.h @@ -21,7 +21,6 @@ class VideoSorter; class FileDisplay; class OriginDialog; class QMenu; -class QSignalMapper; class FileCopier; class ProgressDialog; @@ -94,7 +93,6 @@ class FileWidget : public QWidget { QTreeView *mFileView; QMenuBar *mMenuBar; QMenu *mCopyToMenu; - QSignalMapper *mCopyToMapper; QToolBar *mToolBar; QProgressBar *mProgressBar; QString mLastDir; |