diff options
Diffstat (limited to 'src/plugins/analyzerbase/startremotedialog.h')
-rw-r--r-- | src/plugins/analyzerbase/startremotedialog.h | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/plugins/analyzerbase/startremotedialog.h b/src/plugins/analyzerbase/startremotedialog.h index 5ad308f8db2..4c3f932b853 100644 --- a/src/plugins/analyzerbase/startremotedialog.h +++ b/src/plugins/analyzerbase/startremotedialog.h @@ -37,16 +37,24 @@ #include <QtGui/QDialog> -namespace Utils { -class SshConnectionParameters; -} +QT_BEGIN_NAMESPACE namespace Analyzer { - +namespace Internal { namespace Ui { class StartRemoteDialog; +} // namespace Ui +} // namespace Internal +} // namespace Analyzer + +QT_END_NAMESPACE + +namespace Utils { +class SshConnectionParameters; } +namespace Analyzer { + class ANALYZER_EXPORT StartRemoteDialog : public QDialog { Q_OBJECT @@ -65,7 +73,7 @@ private slots: virtual void accept(); private: - Ui::StartRemoteDialog *m_ui; + Internal::Ui::StartRemoteDialog *m_ui; }; } // namespace Analyzer |