diff options
author | Darrell Anderson <[email protected]> | 2012-04-27 23:09:56 -0500 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-03 03:27:17 +0200 |
commit | 9231a53e8de68a7603aee7ab5d8b5aa827382c8a (patch) | |
tree | d600a691c51acb7a717346d8cc640d86f2ac415c /kicker/applets/launcher | |
parent | 3870dbe675124cea8970e86a595827ed50c9acb4 (diff) | |
download | tdebase-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/applets/launcher')
-rw-r--r-- | kicker/applets/launcher/easyvector.h | 6 |
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()); } |