aboutsummaryrefslogtreecommitdiff
path: root/common/updates.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-03-30 19:27:59 +0200
committerEugene Sandulenko2016-03-30 19:27:59 +0200
commit73784c6a8488fef1ca7e6971a12868735d606de7 (patch)
tree7189644cbe7087e7c3b3e09ec74252ae315f4c5c /common/updates.h
parentbd249ee32489140d4556e9107adfaaa695a84f4a (diff)
downloadscummvm-rg350-73784c6a8488fef1ca7e6971a12868735d606de7.tar.gz
scummvm-rg350-73784c6a8488fef1ca7e6971a12868735d606de7.tar.bz2
scummvm-rg350-73784c6a8488fef1ca7e6971a12868735d606de7.zip
UPDATES: Made interval set/get functions accept normal integers
Diffstat (limited to 'common/updates.h')
-rw-r--r--common/updates.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/updates.h b/common/updates.h
index 4c30987c38..8863a58931 100644
--- a/common/updates.h
+++ b/common/updates.h
@@ -85,14 +85,14 @@ public:
*
* @param interval The interval.
*/
- virtual void setUpdateCheckInterval(UpdateInterval interval) {}
+ virtual void setUpdateCheckInterval(int interval) {}
/**
* Gets the update check interval.
*
* @return the update check interval.
*/
- virtual UpdateInterval getUpdateCheckInterval() { return kUpdateIntervalNotSupported; }
+ virtual int getUpdateCheckInterval() { return kUpdateIntervalNotSupported; }
};
} // End of namespace Common