[Scummvm-git-logs] scummvm master -> ae62f3ff8f1195e66952c8a3530ac202ab7a0e4c

sev- noreply at scummvm.org
Thu Nov 18 22:33:39 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ae62f3ff8f GUI: Fix compilation without LIBCURL


Commit: ae62f3ff8f1195e66952c8a3530ac202ab7a0e4c
    https://github.com/scummvm/scummvm/commit/ae62f3ff8f1195e66952c8a3530ac202ab7a0e4c
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-11-18T23:33:13+01:00

Commit Message:
GUI: Fix compilation without LIBCURL

Changed paths:
    gui/options.cpp


diff --git a/gui/options.cpp b/gui/options.cpp
index 92ec744d0d..3af1a97f75 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -2940,7 +2940,9 @@ void GlobalOptionsDialog::handleCommand(CommandSender *sender, uint32 cmd, uint3
 		}
 		break;
 	}
+#endif
 
+#ifdef USE_LIBCURL
 	case kUpdateIconsCmd: {
 		DownloadIconsDialog dia;
 
@@ -2951,6 +2953,7 @@ void GlobalOptionsDialog::handleCommand(CommandSender *sender, uint32 cmd, uint3
 		break;
 	}
 #endif
+
 #endif
 	case kThemePathClearCmd:
 		_themePath->setLabel(_c("None", "path"));




More information about the Scummvm-git-logs mailing list