From 4716e4d231a26c45fa7d4e38a79f4f44c3b8348a Mon Sep 17 00:00:00 2001 From: manzerbredes Date: Sat, 2 May 2015 23:11:36 +0200 Subject: [PATCH] Fixwhitespace --- src/Model/Game.hpp | 2 +- src/Model/Grid.cpp | 6 +++--- src/Model/Grid.hpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Model/Game.hpp b/src/Model/Game.hpp index ab19340..040885d 100644 --- a/src/Model/Game.hpp +++ b/src/Model/Game.hpp @@ -21,7 +21,7 @@ class Game public: Game(); ~Game(); - + bool swipe(kbdh::Direction direction); void coutGrid(); void popRandomNumber(); diff --git a/src/Model/Grid.cpp b/src/Model/Grid.cpp index 3a8a075..30193dd 100644 --- a/src/Model/Grid.cpp +++ b/src/Model/Grid.cpp @@ -28,7 +28,7 @@ std::string Grid::description(){ //Start to write description std::stringstream gridBorder; for(int i=0;i<(maxStrLen+2)*4+1;i++){ - gridBorder<<"-"; + gridBorder<<"-"; } description << std::endl << gridBorder.str() << std::endl; for(int i=0;i colVect(this->getCol(i)); diff --git a/src/Model/Grid.hpp b/src/Model/Grid.hpp index 21c653a..2f5160e 100644 --- a/src/Model/Grid.hpp +++ b/src/Model/Grid.hpp @@ -29,7 +29,7 @@ class Grid bool setCell(std::tuple coord, int value); bool setCell(int i, int j, int value); - + std::vector swipeLine(std::vector line); std::vector defragmentLine(std::vector line); std::vector mergeLine(std::vector line);