summaryrefslogtreecommitdiffstats
path: root/kicker
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-27 23:09:56 -0500
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 03:27:17 +0200
commit9231a53e8de68a7603aee7ab5d8b5aa827382c8a (patch)
treed600a691c51acb7a717346d8cc640d86f2ac415c /kicker
parent3870dbe675124cea8970e86a595827ed50c9acb4 (diff)
downloadtdebase-9231a53e8de68a7603aee7ab5d8b5aa827382c8a.tar.gz
tdebase-9231a53e8de68a7603aee7ab5d8b5aa827382c8a.zip
GCC 4.7 fix.
This partially resolves bug report 958. Thanks to David C. Rankin. (cherry picked from commit c59b1b55ea2d0fb1f69639ec334396a491d1a672)
Diffstat (limited to 'kicker')
-rw-r--r--kicker/applets/launcher/easyvector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kicker/applets/launcher/easyvector.h b/kicker/applets/launcher/easyvector.h
index cad9a2c86..a6540be69 100644
--- a/kicker/applets/launcher/easyvector.h
+++ b/kicker/applets/launcher/easyvector.h
@@ -87,7 +87,7 @@ typename EasyVector< VALUE, CHECKINDEX >::Index
template < class VALUE, bool CHECKINDEX >
void EasyVector< VALUE, CHECKINDEX >::eraseAt(Index index)
{ _checkIndex(index);
- erase(this->begin()+index);
+ this->erase(this->begin()+index);
}
@@ -108,7 +108,7 @@ void EasyVector< VALUE, CHECKINDEX >::insertAt(EasyVector< VALUE, CHECKINDEX >::
this->push_back(value);
return;
}
- insert(this->begin()+index,value);
+ this->insert(this->begin()+index,value);
}
@@ -116,7 +116,7 @@ template < class VALUE, bool CHECKINDEX >
void EasyVector< VALUE, CHECKINDEX >::insertAt(EasyVector< VALUE, CHECKINDEX >::Index index,const EasyVector< VALUE, CHECKINDEX > &v)
{ index=_convertInsertIndex(index);
_checkInsertIndex(index);
- insert(this->begin()+index,v.begin(),v.end());
+ this->insert(this->begin()+index,v.begin(),v.end());
}