diff --git a/ChangeLog b/ChangeLog index 0aae91375..8b7ee0fd0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2015-07-18 Moritz Bunkus + * 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 diff --git a/src/mkvtoolnix-gui/main_window/main_window.cpp b/src/mkvtoolnix-gui/main_window/main_window.cpp index 87f4dc3bc..92a7e0d1d 100644 --- a/src/mkvtoolnix-gui/main_window/main_window.cpp +++ b/src/mkvtoolnix-gui/main_window/main_window.cpp @@ -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 }