diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-06-27 09:46:21 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-06-27 09:46:21 -0500 |
commit | eebf8f911cedf5124ada2f91576f821da6f421b0 (patch) | |
tree | 446610632a4c784cc5f8cae8d588818c8da84f55 /include/datetime/settings.h | |
parent | a872431f78e5518419c6af5e365db972f362ba9a (diff) | |
download | ayatana-indicator-datetime-eebf8f911cedf5124ada2f91576f821da6f421b0.tar.gz ayatana-indicator-datetime-eebf8f911cedf5124ada2f91576f821da6f421b0.tar.bz2 ayatana-indicator-datetime-eebf8f911cedf5124ada2f91576f821da6f421b0.zip |
use unsigned ints for the alarm volume, duration properties
Diffstat (limited to 'include/datetime/settings.h')
-rw-r--r-- | include/datetime/settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/datetime/settings.h b/include/datetime/settings.h index 26d4ed0..e5f885e 100644 --- a/include/datetime/settings.h +++ b/include/datetime/settings.h @@ -57,8 +57,8 @@ public: core::Property<TimeFormatMode> time_format_mode; core::Property<std::string> timezone_name; core::Property<std::string> alarm_sound; - core::Property<int> alarm_volume; - core::Property<int> alarm_duration; + core::Property<unsigned int> alarm_volume; + core::Property<unsigned int> alarm_duration; }; } // namespace datetime |