diff options
author | Thierry Crozat | 2016-10-16 23:27:59 +0100 |
---|---|---|
committer | Thierry Crozat | 2016-10-16 23:29:01 +0100 |
commit | 873515a7be7c22327921bf957225e78e4dd6b242 (patch) | |
tree | 9390e1a931130c7ddc1986b64149838fff072505 /gui/options.h | |
parent | b9a77756458bd2bd48b1aa282b1533853c3a8b73 (diff) | |
download | scummvm-rg350-873515a7be7c22327921bf957225e78e4dd6b242.tar.gz scummvm-rg350-873515a7be7c22327921bf957225e78e4dd6b242.tar.bz2 scummvm-rg350-873515a7be7c22327921bf957225e78e4dd6b242.zip |
GUI: Fix compilation when cloud is disabled but libcurl is not
Diffstat (limited to 'gui/options.h')
-rw-r--r-- | gui/options.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/options.h b/gui/options.h index 802a503fd3..ffa355cc11 100644 --- a/gui/options.h +++ b/gui/options.h @@ -281,12 +281,13 @@ protected: #endif void setupCloudTab(); -#endif + #ifdef USE_LIBCURL void storageInfoCallback(Cloud::Storage::StorageInfoResponse response); void storageListDirectoryCallback(Cloud::Storage::ListDirectoryResponse response); void storageErrorCallback(Networking::ErrorResponse response); #endif +#endif // USE_CLOUD }; } // End of namespace GUI |