diff options
author | Mike McQuaid <[email protected]> | 2011-04-04 14:39:29 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2011-04-04 14:39:29 +0200 |
commit | e16f83a81d0888ae8635de3c860513735b3f871d (patch) | |
tree | ff344ecbc90a9f69aac6bfa082bef0e806e85925 /src/plugins/memcheck/suppressiondialog.h | |
parent | 0af81b8fd8b48faeb2f1ed2d9c47d81c1d63b28d (diff) |
Update memcheck namespace and use new APIs.
Merge-request: 284
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/memcheck/suppressiondialog.h')
-rw-r--r-- | src/plugins/memcheck/suppressiondialog.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/memcheck/suppressiondialog.h b/src/plugins/memcheck/suppressiondialog.h index 72ed3aaa96d..dce64fcc33f 100644 --- a/src/plugins/memcheck/suppressiondialog.h +++ b/src/plugins/memcheck/suppressiondialog.h @@ -41,18 +41,18 @@ #include <valgrind/xmlprotocol/error.h> -QT_BEGIN_NAMESPACE -namespace Ui { -class SuppressionDialog; -} -QT_END_NAMESPACE - -namespace Analyzer { - +namespace Analyzer +{ class AnalyzerSettings; +} +namespace Memcheck { namespace Internal { +namespace Ui { +class SuppressionDialog; +} + class MemcheckErrorView; class SuppressionDialog : public QDialog @@ -73,7 +73,7 @@ private slots: private: MemcheckErrorView *m_view; Ui::SuppressionDialog *m_ui; - AnalyzerSettings *m_settings; + Analyzer::AnalyzerSettings *m_settings; bool m_cleanupIfCanceled; QList<Valgrind::XmlProtocol::Error> m_errors; }; |