From: Carl Hetherington Date: Wed, 1 Jun 2022 10:11:34 +0000 (+0200) Subject: Fix the header guard and tidy up. X-Git-Tag: v2.16.14~28 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=96fdcb3161d25a5c5f82f29d89830682241f6f92 Fix the header guard and tidy up. --- 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 /** 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