Update README.md

Partial bug fix for #1
main
Alexander Huszagh 2017-08-28 13:59:34 -07:00 committed by GitHub
parent 857f9fa679
commit eab749b61a
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ int main(int argc, char *argv[])
QFile file(":/dark.qss"); QFile file(":/dark.qss");
file.open(QFile::ReadOnly | QFile::Text); file.open(QFile::ReadOnly | QFile::Text);
QTextStream stream(&file); QTextStream stream(&file);
app->setStyleSheet(stream.readAll()); app.setStyleSheet(stream.readAll());
// code goes here // code goes here