diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-08-25 01:45:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-08-25 01:45:28 +0100 |
| commit | f7e08142ac695b2a839707f9bac66304a583b0cd (patch) | |
| tree | 0f4bf92ea06307943c9e69428fc78ec82888b7fe /src | |
| parent | ce6eba78414545d561d6749a4cd75ae755a3cef1 (diff) | |
Comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/audio_content.h | 3 | ||||
| -rw-r--r-- | src/wx/config_dialog.cc | 3 | ||||
| -rw-r--r-- | src/wx/timeline.cc | 9 |
3 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/audio_content.h b/src/lib/audio_content.h index 540839d69..57085a765 100644 --- a/src/lib/audio_content.h +++ b/src/lib/audio_content.h @@ -33,6 +33,9 @@ namespace cxml { class AudioProcessor; +/** @class AudioContentProperty + * @brief Names for properties of AudioContent. + */ class AudioContentProperty { public: diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index 175ed94ad..c1eee3c7b 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -1097,6 +1097,9 @@ private: wxButton* _reset_kdm_email; }; +/** @class AdvancedPage + * @brief Advanced page of the preferences dialog. + */ class AdvancedPage : public wxStockPreferencesPage, public Page { public: diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 1096a435a..13baef6b7 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -213,6 +213,9 @@ private: boost::signals2::scoped_connection _content_connection; }; +/** @class AudioContentView + * @brief Timeline view for AudioContent. + */ class AudioContentView : public ContentView { public: @@ -237,6 +240,9 @@ private: } }; +/** @class AudioContentView + * @brief Timeline view for VideoContent. + */ class VideoContentView : public ContentView { public: @@ -266,6 +272,9 @@ private: } }; +/** @class AudioContentView + * @brief Timeline view for SubtitleContent. + */ class SubtitleContentView : public ContentView { public: |
