diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-23 09:24:18 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-23 09:24:18 +0300 |
commit | 718aca3d066fc24c03b7ac6d625d68829fcaa427 (patch) | |
tree | 44c9b7168a4618659d9c1545885faa83f800b41f /launcher/ui/themes | |
parent | bf95cfb30eee52f23d0279284f70931b2c968dd3 (diff) | |
download | PrismLauncher-718aca3d066fc24c03b7ac6d625d68829fcaa427.tar.gz PrismLauncher-718aca3d066fc24c03b7ac6d625d68829fcaa427.tar.bz2 PrismLauncher-718aca3d066fc24c03b7ac6d625d68829fcaa427.zip |
Fixed date constructor
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/ui/themes')
-rw-r--r-- | launcher/ui/themes/CatPack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/themes/CatPack.h b/launcher/ui/themes/CatPack.h index d9010b8e..9f288d3d 100644 --- a/launcher/ui/themes/CatPack.h +++ b/launcher/ui/themes/CatPack.h @@ -79,7 +79,7 @@ class JsonCatPack : public BasicCatPack { auto sp = d.split("-"); day = sp[0].toInt(); if (sp.length() >= 2) - mounth = sp[1].length(); + mounth = sp[1].toInt(); } int mounth; int day; |