GUI: use correct variable name

Fixes #1359.
This commit is contained in:
Moritz Bunkus 2015-07-18 22:03:58 +02:00
parent c9fed48fdb
commit 5c56d6544f
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2015-07-18 Moritz Bunkus <moritz@bunkus.org>
* MKVToolNix GUI: bug fix: fixed compilation when building without
curl support. Fixes #1359.
* Released v8.2.0.
* mkvmerge, MKVToolNix GUI: bug fix: fixed the container type not

View File

@ -118,7 +118,7 @@ MainWindow::setupMenu() {
#if defined(HAVE_CURL_EASY_H)
connect(ui->actionHelpCheckForUpdates, &QAction::triggered, this, &MainWindow::checkForUpdates);
#else
ui->actionGUICheckForUpdates->setVisible(false);
ui->actionHelpCheckForUpdates->setVisible(false);
#endif // HAVE_CURL_EASY_H
}