summaryrefslogtreecommitdiffstats
path: root/redhat/tdevelop/kdevelop-3.5.13-gcc47.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2014-11-02 11:16:03 +0100
committerFrançois Andriot <albator78@libertysurf.fr>2014-11-02 11:16:03 +0100
commit1c37ca46d2f0a5d50e9bad8e64ecc91f61ed4c90 (patch)
treee81c6de7339cc98af055d11ac578677c04e327a0 /redhat/tdevelop/kdevelop-3.5.13-gcc47.patch
parent63796fe1507d552b62483ba2e68c23b13a8012c3 (diff)
downloadtde-packaging-1c37ca46d2f0a5d50e9bad8e64ecc91f61ed4c90.tar.gz
tde-packaging-1c37ca46d2f0a5d50e9bad8e64ecc91f61ed4c90.zip
RPM Packaging: update tdepim
Diffstat (limited to 'redhat/tdevelop/kdevelop-3.5.13-gcc47.patch')
-rw-r--r--redhat/tdevelop/kdevelop-3.5.13-gcc47.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/redhat/tdevelop/kdevelop-3.5.13-gcc47.patch b/redhat/tdevelop/kdevelop-3.5.13-gcc47.patch
deleted file mode 100644
index 6d5814210..000000000
--- a/redhat/tdevelop/kdevelop-3.5.13-gcc47.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- kdevelop/languages/cpp/cppcodecompletion.cpp.gcc47 2011-08-13 07:59:50.000000000 +0200
-+++ kdevelop/languages/cpp/cppcodecompletion.cpp 2012-04-26 20:33:55.645135959 +0200
-@@ -3892,15 +3892,15 @@
- ArgumentList fArgs = ( *it ) ->argumentList();
- if ( fArgs.count() != args.count() )
- continue;
-- ArgumentList::iterator it = args.begin();
-+ ArgumentList::iterator it3 = args.begin();
- ArgumentList::iterator it2 = fArgs.begin();
- bool hit = true;
-- while ( it != args.end() ) {
-- if ( ( *it ) ->type() != ( *it2 ) ->type() ) {
-+ while ( it3 != args.end() ) {
-+ if ( ( *it3 ) ->type() != ( *it2 ) ->type() ) {
- hit = false;
- break;
- }
-- ++it;
-+ ++it3;
- ++it2;
- }
- if ( hit ) {