23 lines
552 B
C++
23 lines
552 B
C++
//#include "mainwindow.h"
|
|
#include"hello.h"
|
|
|
|
#include <QApplication>
|
|
#include<QFile>
|
|
|
|
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();
|
|
}
|