Some clazy fixes.
This commit is contained in:
parent
ec886d15ee
commit
a2e1043d85
1 changed files with 2 additions and 2 deletions
|
@ -759,7 +759,7 @@ void FormMain::showAddAccountDialog() {
|
|||
}
|
||||
|
||||
void FormMain::reportABug() {
|
||||
if (!WebFactory::instance()->openUrlInExternalBrowser(APP_URL_ISSUES_NEW)) {
|
||||
if (!WebFactory::instance()->openUrlInExternalBrowser(QSL(APP_URL_ISSUES_NEW))) {
|
||||
qApp->showGuiMessage(tr("Cannot open external browser"),
|
||||
tr("Cannot open external browser. Navigate to application website manually."),
|
||||
QSystemTrayIcon::Warning, this, true);
|
||||
|
@ -767,7 +767,7 @@ void FormMain::reportABug() {
|
|||
}
|
||||
|
||||
void FormMain::donate() {
|
||||
if (!WebFactory::instance()->openUrlInExternalBrowser(APP_DONATE_URL)) {
|
||||
if (!WebFactory::instance()->openUrlInExternalBrowser(QSL(APP_DONATE_URL))) {
|
||||
qApp->showGuiMessage(tr("Cannot open external browser"),
|
||||
tr("Cannot open external browser. Navigate to application website manually."),
|
||||
QSystemTrayIcon::Warning, this, true);
|
||||
|
|
Loading…
Add table
Reference in a new issue