diff options
Diffstat (limited to 'Swiften/Elements/Last.h')
-rw-r--r-- | Swiften/Elements/Last.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Elements/Last.h b/Swiften/Elements/Last.h index 2987817..ba302e3 100644 --- a/Swiften/Elements/Last.h +++ b/Swiften/Elements/Last.h @@ -14,7 +14,7 @@ namespace Swift { Last() {}; Last(int seconds) : seconds_(seconds) {}; - int getSeconds() {return seconds_;} + int getSeconds() const {return seconds_;} void setSeconds(int seconds) {seconds_ = seconds;} private: |