From 89d36717d5764df79e4e42b8ed2612c043f3f0e6 Mon Sep 17 00:00:00 2001 From: Isabell Pflug Date: Thu, 25 May 2023 17:19:56 +0200 Subject: [PATCH] :bug: Fixed default value for color list --- ThinkPink/samegame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ThinkPink/samegame.cpp b/ThinkPink/samegame.cpp index 7c323a5..263f19a 100644 --- a/ThinkPink/samegame.cpp +++ b/ThinkPink/samegame.cpp @@ -19,7 +19,7 @@ void SameGame::initialiseGameMatrix(int rows, int columns) { } SameGame::SameGame(int rows, int columns) - : colors(settings->value("colors/colors", QStringList() << "#A90A5A" << "#FFD1D9" << "#DB7093" << "#F7A8B8" << "#660033").toStringList()) + : colors(settings->value("colors/colors", QList() << "#A90A5A" << "#FFD1D9" << "#DB7093" << "#F7A8B8" << "#660033").toStringList()) // also ich finds echt cool! { initialiseGameMatrix(rows, columns);