//#include "mainwindow.h" #include"hello.h" #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); // QFile styleSheetFile("/home/nrumak/password_manager/PasswordManager/resource/Genetive.qss"); QFile styleSheetFile("/home/daniil/passman1/password_manager/PasswordManager/resource/Remover.qss"); styleSheetFile.open(QFile::ReadOnly); QString styleSheet = QLatin1String(styleSheetFile.readAll()); a.setStyleSheet(styleSheet); Hello w; w.show(); return a.exec(); }