diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-04 12:32:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-04 12:32:37 +0100 |
| commit | 951572c6eb7e31834d2d7f1fbc67a9cdb1336696 (patch) | |
| tree | adfa99e08b52d759905499ffa2d5731c48ed8ac6 /src/dcp_time.h | |
| parent | 73663040fef9ae613ce42e89d852a66cbbc81bf6 (diff) | |
to_* to as_* in a few method names.
Diffstat (limited to 'src/dcp_time.h')
| -rw-r--r-- | src/dcp_time.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dcp_time.h b/src/dcp_time.h index 907a8306..4e505738 100644 --- a/src/dcp_time.h +++ b/src/dcp_time.h @@ -69,9 +69,9 @@ public: int e; ///< editable units (where 1 editable unit is 1 / tcr_ seconds) int tcr; ///< timecode rate: the number of editable units per second. - std::string to_string () const; - double to_seconds () const; - int64_t to_editable_units (int tcr_) const; + std::string as_string () const; + double as_seconds () const; + int64_t as_editable_units (int tcr_) const; Time rebase (int tcr_) const; private: |
