diff options
| author | Al <gabriel.cortesi@outlook.com> | 2019-10-04 22:16:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-04 22:16:39 +0200 |
| commit | e427dbae55c77276288cdc8105604885a4b3309c (patch) | |
| tree | 48c57873e62597ee005e60690e669f32833baa25 /src/modinfodialognexus.cpp | |
| parent | 73541c9bb45366f648ba2a9c430ca7b526a8a6a2 (diff) | |
| parent | c4dd23abb7a37531040d6348c491dc868919013c (diff) | |
Merge pull request #847 from isanae/file-renamer-errors
FileRenamer error messages
Diffstat (limited to 'src/modinfodialognexus.cpp')
| -rw-r--r-- | src/modinfodialognexus.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modinfodialognexus.cpp b/src/modinfodialognexus.cpp index 95e62328..59bfe930 100644 --- a/src/modinfodialognexus.cpp +++ b/src/modinfodialognexus.cpp @@ -95,7 +95,7 @@ void NexusTab::update() connect( page, &NexusTabWebpage::linkClicked, - [&](const QUrl& url){ shell::OpenLink(url); }); + [&](const QUrl& url){ shell::Open(url); }); ui->endorse->setEnabled( (mod().endorsedState() == ModInfo::ENDORSED_FALSE) || @@ -363,7 +363,7 @@ void NexusTab::onVisitNexus() const QString nexusLink = NexusInterface::instance(&plugin()) ->getModURL(modID, mod().getGameName()); - shell::OpenLink(QUrl(nexusLink)); + shell::Open(QUrl(nexusLink)); } } @@ -412,6 +412,6 @@ void NexusTab::onVisitCustomURL() { const auto url = mod().parseCustomURL(); if (url.isValid()) { - shell::OpenLink(url); + shell::Open(url); } } |
