diff options
author | Kevin Funk <[email protected]> | 2011-03-04 16:00:03 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2011-03-04 16:00:03 +0100 |
commit | 0932334109a9a3cfc445eae4497de56671b36ff0 (patch) | |
tree | cc10506bfb878f1e8c21a35972e23567e3ba232d /src/plugins/memcheck/memcheckconfigwidget.h | |
parent | ca2a10d633b42b92afccf9a9f220dbb99484660d (diff) |
Simplify analyzer config widgets
Interconnect signal/slots directly instead of adding other slots in the
config widgets class.
Merge-request: 265
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/memcheck/memcheckconfigwidget.h')
-rw-r--r-- | src/plugins/memcheck/memcheckconfigwidget.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/plugins/memcheck/memcheckconfigwidget.h b/src/plugins/memcheck/memcheckconfigwidget.h index a846ab9709e..e1c1f979414 100644 --- a/src/plugins/memcheck/memcheckconfigwidget.h +++ b/src/plugins/memcheck/memcheckconfigwidget.h @@ -63,14 +63,7 @@ public: void setSuppressions(const QStringList &files); QStringList suppressions() const; - // ### remove the following? - int numCallers() const; - bool trackOrigins() const; - -public slots: - void setNumCallers(int callers); - void setTrackOrigins(bool enable); - +public Q_SLOTS: void slotAddSuppression(); void slotRemoveSuppression(); void slotSuppressionsRemoved(const QStringList &files); |