aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2019-05-26 21:31:24 +0300
committerOrgad Shaneh <orgads@gmail.com>2019-05-27 06:50:23 +0000
commit24c0fc7ea1f063d6aa0b32310ab7816b33248d72 (patch)
treeac7d509c434ced429789978452c99570726c61cd /src/plugins/qnx
parent1e138fbe10b56ae3f8fee2cee59f4032c0b32f12 (diff)
Qnx: Delete unneeded qnxdevicefactory.*
Change-Id: Iccac8e70683b80c7e0df287109d90700aecb36f1 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/qnx')
-rw-r--r--src/plugins/qnx/CMakeLists.txt1
-rw-r--r--src/plugins/qnx/qnx.pro2
-rw-r--r--src/plugins/qnx/qnx.qbs2
-rw-r--r--src/plugins/qnx/qnxdevicefactory.cpp38
-rw-r--r--src/plugins/qnx/qnxdevicefactory.h35
-rw-r--r--src/plugins/qnx/qnxplugin.cpp1
6 files changed, 0 insertions, 79 deletions
diff --git a/src/plugins/qnx/CMakeLists.txt b/src/plugins/qnx/CMakeLists.txt
index baf561ebcec..75a060d2644 100644
--- a/src/plugins/qnx/CMakeLists.txt
+++ b/src/plugins/qnx/CMakeLists.txt
@@ -12,7 +12,6 @@ add_qtc_plugin(Qnx
qnxdebugsupport.cpp qnxdebugsupport.h
qnxdeployqtlibrariesdialog.cpp qnxdeployqtlibrariesdialog.h qnxdeployqtlibrariesdialog.ui
qnxdevice.cpp qnxdevice.h
- qnxdevicefactory.cpp qnxdevicefactory.h
qnxdeviceprocess.cpp qnxdeviceprocess.h
qnxdeviceprocesslist.cpp qnxdeviceprocesslist.h
qnxdeviceprocesssignaloperation.cpp qnxdeviceprocesssignaloperation.h
diff --git a/src/plugins/qnx/qnx.pro b/src/plugins/qnx/qnx.pro
index ac292b42c6f..fd9fffccf44 100644
--- a/src/plugins/qnx/qnx.pro
+++ b/src/plugins/qnx/qnx.pro
@@ -5,7 +5,6 @@ include(../../qtcreatorplugin.pri)
SOURCES += qnxplugin.cpp \
qnxbaseqtconfigwidget.cpp \
qnxutils.cpp \
- qnxdevicefactory.cpp \
qnxdevicewizard.cpp \
qnxrunconfiguration.cpp \
qnxanalyzesupport.cpp \
@@ -29,7 +28,6 @@ HEADERS += qnxplugin.h\
qnxconstants.h \
qnxbaseqtconfigwidget.h \
qnxutils.h \
- qnxdevicefactory.h \
qnxdevicewizard.h \
qnxrunconfiguration.h \
qnxanalyzesupport.h \
diff --git a/src/plugins/qnx/qnx.qbs b/src/plugins/qnx/qnx.qbs
index 143a1f10aa4..3865766004b 100644
--- a/src/plugins/qnx/qnx.qbs
+++ b/src/plugins/qnx/qnx.qbs
@@ -32,8 +32,6 @@ QtcPlugin {
"qnxdebugsupport.h",
"qnxdevice.cpp",
"qnxdevice.h",
- "qnxdevicefactory.cpp",
- "qnxdevicefactory.h",
"qnxdevicewizard.cpp",
"qnxdevicewizard.h",
"qnxdeviceprocesslist.cpp",
diff --git a/src/plugins/qnx/qnxdevicefactory.cpp b/src/plugins/qnx/qnxdevicefactory.cpp
deleted file mode 100644
index 61ade82636d..00000000000
--- a/src/plugins/qnx/qnxdevicefactory.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
-** Contact: KDAB (info@kdab.com)
-**
-** This file is part of Qt Creator.
-**
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-****************************************************************************/
-
-#include "qnxdevicefactory.h"
-
-#include "qnxconstants.h"
-#include "qnxdevicewizard.h"
-#include "qnxdevice.h"
-
-#include <utils/qtcassert.h>
-
-namespace Qnx {
-namespace Internal {
-
-} // namespace Internal
-} // namespace Qnx
diff --git a/src/plugins/qnx/qnxdevicefactory.h b/src/plugins/qnx/qnxdevicefactory.h
deleted file mode 100644
index 2c9b9998c57..00000000000
--- a/src/plugins/qnx/qnxdevicefactory.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
-** Contact: KDAB (info@kdab.com)
-**
-** This file is part of Qt Creator.
-**
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-****************************************************************************/
-
-#pragma once
-
-#include <projectexplorer/devicesupport/idevicefactory.h>
-
-namespace Qnx {
-namespace Internal {
-
-
-} // namespace Internal
-} // namespace Qnx
diff --git a/src/plugins/qnx/qnxplugin.cpp b/src/plugins/qnx/qnxplugin.cpp
index 28965ed132f..06f2701715b 100644
--- a/src/plugins/qnx/qnxplugin.cpp
+++ b/src/plugins/qnx/qnxplugin.cpp
@@ -30,7 +30,6 @@
#include "qnxconstants.h"
#include "qnxdebugsupport.h"
#include "qnxdevice.h"
-#include "qnxdevicefactory.h"
#include "qnxqtversion.h"
#include "qnxrunconfiguration.h"
#include "qnxsettingspage.h"