mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
forward command line arguments to DaemonManager
This commit is contained in:
parent
7840dab9cc
commit
752ff2616f
1 changed files with 1 additions and 3 deletions
4
main.cpp
4
main.cpp
|
@ -51,8 +51,6 @@ int main(int argc, char *argv[])
|
|||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
qDebug() << "app startd";
|
||||
|
||||
app.setApplicationName("monero-core");
|
||||
app.setOrganizationDomain("getmonero.org");
|
||||
app.setOrganizationName("The Monero Project");
|
||||
|
@ -108,7 +106,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
engine.addImageProvider(QLatin1String("qrcode"), new QRCodeImageProvider());
|
||||
|
||||
engine.rootContext()->setContextProperty("daemonManager", DaemonManager::instance());
|
||||
engine.rootContext()->setContextProperty("daemonManager", DaemonManager::instance(QCoreApplication::arguments()));
|
||||
|
||||
// export to QML monero accounts root directory
|
||||
// wizard is talking about where
|
||||
|
|
Loading…
Reference in a new issue