From 5c56d6544ffc212ca39ac59f4ed98b4f04761de8 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 18 Jul 2015 22:03:58 +0200 Subject: [PATCH] GUI: use correct variable name Fixes #1359. --- ChangeLog | 3 +++ src/mkvtoolnix-gui/main_window/main_window.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 }