Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Subtitles/STS.h')
-rw-r--r--src/Subtitles/STS.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Subtitles/STS.h b/src/Subtitles/STS.h
index 0841e7f9a..c5d404ca9 100644
--- a/src/Subtitles/STS.h
+++ b/src/Subtitles/STS.h
@@ -184,9 +184,9 @@ public:
int TranslateSegmentStart(int i, double fps);
int TranslateSegmentEnd(int i, double fps);
- const STSSegment* SearchSubs(int t, double fps, /*[out]*/ int* iSegment = NULL, int* nSegments = NULL);
+ const STSSegment* SearchSubs(int t, double fps, /*[out]*/ int* iSegment = nullptr, int* nSegments = nullptr);
const STSSegment* GetSegment(int iSegment) {
- return iSegment >= 0 && iSegment < (int)m_segments.GetCount() ? &m_segments[iSegment] : NULL;
+ return iSegment >= 0 && iSegment < (int)m_segments.GetCount() ? &m_segments[iSegment] : nullptr;
}
STSStyle* GetStyle(int i);