summaryrefslogtreecommitdiff
path: root/src/interop_subtitle_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-04-30 19:22:31 +0100
committerCarl Hetherington <cth@carlh.net>2015-04-30 19:22:31 +0100
commit2246204c213d61b2cde7a85d6038156283670c9d (patch)
treec050e64cd4e1484059ddfef8b1960df5ec04828b /src/interop_subtitle_content.h
parent4c0cbcddc4b1015b902ce2100879071fdd887b02 (diff)
Rename some things to ...Node.
Diffstat (limited to 'src/interop_subtitle_content.h')
-rw-r--r--src/interop_subtitle_content.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interop_subtitle_content.h b/src/interop_subtitle_content.h
index 98a4b599..cb7c52d5 100644
--- a/src/interop_subtitle_content.h
+++ b/src/interop_subtitle_content.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
namespace dcp {
-class InteropLoadFont;
+class InteropLoadFontNode;
class InteropSubtitleContent : public SubtitleContent
{
@@ -36,7 +36,7 @@ public:
NoteHandler note
) const;
- std::list<boost::shared_ptr<LoadFont> > load_font_nodes () const;
+ std::list<boost::shared_ptr<LoadFontNode> > load_font_nodes () const;
void add_font (std::string id, std::string uri);
@@ -44,7 +44,7 @@ public:
private:
std::string _movie_title;
- std::list<boost::shared_ptr<InteropLoadFont> > _load_font_nodes;
+ std::list<boost::shared_ptr<InteropLoadFontNode> > _load_font_nodes;
};
}