summaryrefslogtreecommitdiff
path: root/src/subtitle_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-02 21:51:56 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-02 21:51:56 +0100
commit8fca5499789ae1deb2dbcad8d3501a8f42fb95f0 (patch)
treef77fd52ac2ade3f14eb686a3dfcd23d3d1277824 /src/subtitle_asset.h
parent0884b93386c0b6858eae0236d75a4eba12176219 (diff)
Clean up DCP comparison a bit.
Diffstat (limited to 'src/subtitle_asset.h')
-rw-r--r--src/subtitle_asset.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/subtitle_asset.h b/src/subtitle_asset.h
index d02e364c..66f75cbe 100644
--- a/src/subtitle_asset.h
+++ b/src/subtitle_asset.h
@@ -183,9 +183,10 @@ public:
SubtitleAsset (std::string directory, std::string xml);
void write_to_cpl (std::ostream&) const {}
- virtual std::list<std::string> equals (boost::shared_ptr<const Asset>, EqualityOptions) const {
+ virtual bool equals (boost::shared_ptr<const Asset>, EqualityOptions, std::list<std::string>& notes) const {
/* XXX */
- return std::list<std::string> ();
+ notes.push_back ("subtitle assets not compared yet");
+ return true;
}
std::string language () const {