summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cppcompletionsupport.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@digia.com>2013-08-30 13:13:44 +0200
committerNikolai Kosjar <nikolai.kosjar@digia.com>2013-09-09 11:59:14 +0200
commitb4a1bd415f3783d826f012a7d47d1e96218e1730 (patch)
tree89d88a8fc184e0273ae3f48a27ff5f653cad2443 /src/plugins/cpptools/cppcompletionsupport.cpp
parent49adb78ec967be09cfb934d997fb9bc54f1c535e (diff)
downloadqt-creator-b4a1bd415f3783d826f012a7d47d1e96218e1730.tar.gz
C++: clean-up CppCompletionAssist.
This is step 1 of 2 for merging the various provider factories into a single class. Merging has the advantage that selecting based on editor (content) mime-type only has to select one class, instead of re-doing the selection for each class separately. Change-Id: I11f815151bd4769ae6028b636793d6a80d02e202 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cppcompletionsupport.cpp')
-rw-r--r--src/plugins/cpptools/cppcompletionsupport.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/plugins/cpptools/cppcompletionsupport.cpp b/src/plugins/cpptools/cppcompletionsupport.cpp
deleted file mode 100644
index 12665cb6b4..0000000000
--- a/src/plugins/cpptools/cppcompletionsupport.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** 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 Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-****************************************************************************/
-
-#include "cppcompletionsupport.h"
-
-using namespace CppTools;
-
-CppCompletionSupport::CppCompletionSupport(TextEditor::ITextEditor *editor)
- : m_editor(editor)
-{
- Q_ASSERT(editor);
-}
-
-CppCompletionSupport::~CppCompletionSupport()
-{
-}