diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-07-31 10:33:14 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-07-31 10:33:14 -0500 |
commit | 9d32289feda6d72e53bcf7e77e2cbef09f88165e (patch) | |
tree | 41f34b4555683045e9bbf7d33b3284452d176941 /include/notifications/haptic.h | |
parent | e2e259126c0d5c834135014d85430ffcfc885588 (diff) | |
download | ayatana-indicator-datetime-9d32289feda6d72e53bcf7e77e2cbef09f88165e.tar.gz ayatana-indicator-datetime-9d32289feda6d72e53bcf7e77e2cbef09f88165e.tar.bz2 ayatana-indicator-datetime-9d32289feda6d72e53bcf7e77e2cbef09f88165e.zip |
in indicator::noficiations::Haptic, better naming of the Mode enum
Diffstat (limited to 'include/notifications/haptic.h')
-rw-r--r-- | include/notifications/haptic.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/notifications/haptic.h b/include/notifications/haptic.h index 3036485..d82d1c9 100644 --- a/include/notifications/haptic.h +++ b/include/notifications/haptic.h @@ -36,9 +36,12 @@ namespace notifications { class Haptic { public: - enum Mode { VIBRATE_DEFAULT }; + enum Mode + { + MODE_PULSE + }; - Haptic(const Mode& mode = VIBRATE_DEFAULT); + Haptic(const Mode& mode = MODE_PULSE); ~Haptic(); private: |