diff GUIButton.cpp @ 1202:0dbf6c4dd029

arrays to std::arrays phase 1
author Grumpy7
date Sat, 08 Jun 2013 21:33:22 +0200
parents 9ac94d00012e
children 0aeac0b9ca30
line wrap: on
line diff
--- a/GUIButton.cpp	Sat Jun 08 19:34:33 2013 +0200
+++ b/GUIButton.cpp	Sat Jun 08 21:33:22 2013 +0200
@@ -100,10 +100,10 @@
 struct GUIButton *pBtnLoadSlot;
 
 
-GUIButton *pCreationUI_BtnPressRight2[4];
-GUIButton *pCreationUI_BtnPressLeft2[4];
-GUIButton *pCreationUI_BtnPressLeft[4];
-GUIButton *pCreationUI_BtnPressRight[4];
+std::array<GUIButton*, 4> pCreationUI_BtnPressRight2;
+std::array<GUIButton*, 4> pCreationUI_BtnPressLeft2;
+std::array<GUIButton*, 4> pCreationUI_BtnPressLeft;
+std::array<GUIButton*, 4> pCreationUI_BtnPressRight;