diff options
author | Aimee Linden <aimee@lindenlab.com> | 2010-05-23 19:44:30 +0100 |
---|---|---|
committer | Aimee Linden <aimee@lindenlab.com> | 2010-05-23 19:44:30 +0100 |
commit | 08e610adfa8124fa7b990f952ad3053b955b62d3 (patch) | |
tree | b8a6b110edc190eadcebfe35de82954d3850fff4 /indra/newview/llvoicevivox.h | |
parent | 1cb14cd52bdd7b795f081043fb4444e0a196f82b (diff) |
EXT-7335 WIP Parse Vivox voice font expiry timestamps into ISO 8601 standard dates.
Diffstat (limited to 'indra/newview/llvoicevivox.h')
-rw-r--r-- | indra/newview/llvoicevivox.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llvoicevivox.h b/indra/newview/llvoicevivox.h index f67798c207..130fdac146 100644 --- a/indra/newview/llvoicevivox.h +++ b/indra/newview/llvoicevivox.h @@ -664,7 +664,7 @@ protected: void addVoiceFont(const S32 id, const std::string &name, const std::string &description, - const std::string &expiration_date, + const LLDate &expiration_date, const bool has_expired, const S32 font_type, const S32 font_status, @@ -893,7 +893,7 @@ private: LLUUID mID; S32 mFontIndex; std::string mName; - std::string mExpirationDate; + LLDate mExpirationDate; bool mHasExpired; S32 mFontType; S32 mFontStatus; @@ -1016,7 +1016,7 @@ protected: std::string subscriptionType; S32 id; std::string descriptionString; - std::string expirationDateString; + LLDate expirationDate; bool hasExpired; S32 fontType; S32 fontStatus; @@ -1037,7 +1037,7 @@ protected: void StartTag(const char *tag, const char **attr); void EndTag(const char *tag); void CharData(const char *buffer, int length); - + LLDate vivoxTimeStampToLLDate(const std::string& vivox_ts); }; |