From 7b6c76ba1528a4f4e09966bf5bedfdd614c51023 Mon Sep 17 00:00:00 2001 From: Raul Rodrigo Segura Date: Mon, 21 May 2018 09:27:58 +0200 Subject: [PATCH] fix typo --- src/calamares/CalamaresWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calamares/CalamaresWindow.cpp b/src/calamares/CalamaresWindow.cpp index 31f1b5c21..2dbda3c36 100644 --- a/src/calamares/CalamaresWindow.cpp +++ b/src/calamares/CalamaresWindow.cpp @@ -165,7 +165,7 @@ CalamaresWindow::CalamaresWindow( QWidget* parent ) QFileInfo importQSSPath = QFileInfo( brandingQSSDescriptorPath ); if ( importQSSPath.exists() && importQSSPath.isReadable() ) { - QFile File(importQSSPath); + QFile File(brandingQSSDescriptorPath); File.open(QFile::ReadOnly); QString StyleSheet = QLatin1String(File.readAll()); this->setStyleSheet(StyleSheet);