diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-06-01 12:11:34 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-06-07 17:01:06 +0200 |
| commit | 96fdcb3161d25a5c5f82f29d89830682241f6f92 (patch) | |
| tree | ef121604d5a67d5e57c34abe934f3953eb7d1739 | |
| parent | 3ee25c2fabd43040f9388efa89482b90cb4ccadc (diff) | |
Fix the header guard and tidy up.
| -rw-r--r-- | src/lib/string_text.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/string_text.h b/src/lib/string_text.h index 4f4958163..887224d53 100644 --- a/src/lib/string_text.h +++ b/src/lib/string_text.h @@ -18,12 +18,15 @@ */ -#ifndef DCPOMATIC_PLAIN_TEXT_H -#define DCPOMATIC_PLAIN_TEXT_H + +#ifndef DCPOMATIC_STRING_TEXT_H +#define DCPOMATIC_STRING_TEXT_H + #include <dcp/subtitle_string.h> /** A wrapper for SubtitleString which allows us to include settings that are not + * applicable to true DCP subtitles. For example, we can set outline width for burn-in * but this cannot be specified in DCP XML. */ @@ -38,4 +41,5 @@ public: int outline_width; }; + #endif |
