summaryrefslogtreecommitdiff
path: root/tests/manual/ssh/sftpfsmodel/window.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-05-18 10:49:35 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2012-05-22 10:51:53 +0200
commit53a1087d1321758ab1dc0a6ad737c135249bd5e6 (patch)
treeab0f9596da64a1907690b324bd05416c585eaf8c /tests/manual/ssh/sftpfsmodel/window.h
parentb9d9bb7ba85e3b3ea0e06f0876272c0e3bebd144 (diff)
downloadqt-creator-53a1087d1321758ab1dc0a6ad737c135249bd5e6.tar.gz
Move SSH support into a dedicated library.
It does not belong into libUtils, which is a collection of small unrelated utility classes. Task-number: QTCREATORBUG-7218 Change-Id: Id92b9f28678afec93e6f07166adfde6550f38072 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'tests/manual/ssh/sftpfsmodel/window.h')
-rw-r--r--tests/manual/ssh/sftpfsmodel/window.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/manual/ssh/sftpfsmodel/window.h b/tests/manual/ssh/sftpfsmodel/window.h
index b403df0582..5e6d5ee4a9 100644
--- a/tests/manual/ssh/sftpfsmodel/window.h
+++ b/tests/manual/ssh/sftpfsmodel/window.h
@@ -29,7 +29,7 @@
** Nokia at qt-info@nokia.com.
**
**************************************************************************/
-#include <utils/ssh/sftpdefs.h>
+#include <ssh/sftpdefs.h>
#include <QDialog>
@@ -37,7 +37,7 @@ QT_BEGIN_NAMESPACE
namespace Ui { class Window; }
QT_END_NAMESPACE
-namespace Utils { class SftpFileSystemModel; }
+namespace QSsh { class SftpFileSystemModel; }
class SftpFsWindow : public QDialog
{
@@ -51,9 +51,9 @@ private slots:
void downloadFile();
void handleConnectionError(const QString &errorMessage);
void handleSftpOperationFailed(const QString &errorMessage);
- void handleSftpOperationFinished(Utils::SftpJobId jobId, const QString &error);
+ void handleSftpOperationFinished(QSsh::SftpJobId jobId, const QString &error);
private:
- Utils::SftpFileSystemModel *m_fsModel;
+ QSsh::SftpFileSystemModel *m_fsModel;
Ui::Window *m_ui;
};