Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Romain De Laage De Bellefaye
LO21-projet
Commits
270b6217
Verified
Commit
270b6217
authored
Jun 11, 2021
by
Romain De Laage De Bellefaye
🌳
Browse files
Remove warning
parent
11a81c84
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/autocell.cpp
View file @
270b6217
...
...
@@ -233,9 +233,8 @@ void AutoCell::afficherGrille(Reseau* Grille)
QFont
serifFont
(
"Times"
,
8
,
QFont
::
DemiBold
);
for
(
unsigned
int
i
=
0
;
i
<
h
;
i
++
){
for
(
unsigned
int
j
=
0
;
j
<
l
;
j
++
)
{
for
(
int
i
=
0
;
i
<
h
;
++
i
)
{
for
(
int
j
=
0
;
j
<
l
;
++
j
)
{
//vérifier si les cellules ont ou non été générés (!= nullptr)
QString
indice
;
indice
.
setNum
(
Grille
->
getReseau
()[
i
][
j
].
getIndEtat
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment