mirror of https://github.com/odrling/Aegisub
Don't rely on ADL for std algorithms called on wxArrayInt as wxArrayInt doesn't always inherit from std::vector
Originally committed to SVN as r5671.
This commit is contained in:
parent
34a7f16214
commit
9ad1434f37
|
@ -264,10 +264,10 @@ void AudioKaraoke::SetDisplayText() {
|
||||||
dc.GetPartialTextExtents(spaced_text, p_char_x);
|
dc.GetPartialTextExtents(spaced_text, p_char_x);
|
||||||
|
|
||||||
// Convert the partial sub to the the width of each character
|
// Convert the partial sub to the the width of each character
|
||||||
adjacent_difference(p_char_x.begin(), p_char_x.end(), p_char_x.begin());
|
std::adjacent_difference(p_char_x.begin(), p_char_x.end(), p_char_x.begin());
|
||||||
|
|
||||||
// Get the maximum character width
|
// Get the maximum character width
|
||||||
char_width = *max_element(p_char_x.begin(), p_char_x.end());
|
char_width = *std::max_element(p_char_x.begin(), p_char_x.end());
|
||||||
|
|
||||||
// Center each character within the space available to it
|
// Center each character within the space available to it
|
||||||
char_x.resize(p_char_x.size());
|
char_x.resize(p_char_x.size());
|
||||||
|
|
Loading…
Reference in New Issue