From 740c477356079ce805ad9758fcac5d1cb0746d18 Mon Sep 17 00:00:00 2001 From: Daniel Pizetta Date: Wed, 21 Feb 2018 17:08:02 -0300 Subject: [PATCH] Fix C++ example, suggestion from Marc-Andre Trage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60b79f3de..6635b64b5 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ From code: Download/clone the project, go to ``qdarkstyle`` folder then: - Load the stylesheet: ```cpp - QFile f(":qdarkstyle/style.qss"); + QFile f("qdarkstyle/style.qss"); if (!f.exists()) { printf("Unable to set stylesheet, file not found\n");