summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <andreas.sturmlechner@gmail.com>2016-09-19 18:55:31 +0200
committerMichael Palimaka <kensington@gentoo.org>2016-09-22 00:57:40 +1000
commitb58f46f82ce62e5defe2ea978cafa5ecc89b28e0 (patch)
tree0ba9d967b258c386c38b3d7062b650f112e89b61 /dev-util/kdevelop/files
parentdev-util/kdevelop-python: 5.0.1 version bump (diff)
downloadgentoo-b58f46f82ce62e5defe2ea978cafa5ecc89b28e0.tar.gz
gentoo-b58f46f82ce62e5defe2ea978cafa5ecc89b28e0.tar.bz2
gentoo-b58f46f82ce62e5defe2ea978cafa5ecc89b28e0.zip
dev-util/kdevelop*: Drop 5.0.0
Diffstat (limited to 'dev-util/kdevelop/files')
-rw-r--r--dev-util/kdevelop/files/kdevelop-5.0.0-fix-cpp.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-util/kdevelop/files/kdevelop-5.0.0-fix-cpp.patch b/dev-util/kdevelop/files/kdevelop-5.0.0-fix-cpp.patch
deleted file mode 100644
index 9b15fe954825..000000000000
--- a/dev-util/kdevelop/files/kdevelop-5.0.0-fix-cpp.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From: Milian Wolff <mail@milianw.de>
-Date: Mon, 22 Aug 2016 10:47:26 +0000
-Subject: Fix compile
-X-Git-Url: http://quickgit.kde.org/?p=kdevelop.git&a=commitdiff&h=f4b5b7538be64328cf8462ee438caaac6c0907aa
----
-Fix compile
-
-BUG: 367659
----
-
-
---- a/languages/cpp/cppduchain/cppducontext.cpp
-+++ b/languages/cpp/cppduchain/cppducontext.cpp
-@@ -39,7 +39,8 @@
- REGISTER_DUCHAIN_ITEM_WITH_DATA(CppNormalDUContext, DUContextData);
-
- template<>
--QWidget* CppDUContext<TopDUContext>::createNavigationWidget( Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix ) const {
-+QWidget* CppDUContext<TopDUContext>::createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix,
-+ AbstractNavigationWidget::DisplayHints /*hints*/) const {
- if( decl == 0 ) {
- Path path( url().str() );
- IncludeItem i;
-@@ -55,7 +56,8 @@
- }
-
- template<>
--QWidget* CppDUContext<DUContext>::createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix) const {
-+QWidget* CppDUContext<DUContext>::createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix,
-+ AbstractNavigationWidget::DisplayHints /*hints*/) const {
- if( decl == 0 ) {
- if( owner() )
- return new NavigationWidget( DeclarationPointer(owner()), TopDUContextPointer(topContext ? topContext : this->topContext()), htmlPrefix, htmlSuffix );
-
---- a/languages/cpp/cppduchain/cppducontext.h
-+++ b/languages/cpp/cppduchain/cppducontext.h
-@@ -652,7 +652,8 @@
- return instantiateDeclarationAndContext( surroundingContext, source, this, info, 0, 0 );
- }
-
-- virtual QWidget* createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix) const override;
-+ virtual QWidget* createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix,
-+ KDevelop::AbstractNavigationWidget::DisplayHints hints = KDevelop::AbstractNavigationWidget::NoHints) const override;
-
- enum {
- Identity = BaseContext::Identity + 50
-