From 085dd94f0d88a1c411ac7df5ad780cf179bcf5d1 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Thu, 25 Jun 2009 02:31:35 +0000 Subject: [PATCH] Unbreak Unix/OSX from r3085, I'll let jfs do a proper fix when he's around. Updates #884. Originally committed to SVN as r3087. --- aegisub/src/dialog_kanji_timer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aegisub/src/dialog_kanji_timer.cpp b/aegisub/src/dialog_kanji_timer.cpp index c289b1eac..cf7c04a92 100644 --- a/aegisub/src/dialog_kanji_timer.cpp +++ b/aegisub/src/dialog_kanji_timer.cpp @@ -67,8 +67,8 @@ class KaraokeLineMatchDisplay : public wxControl { MatchSyllable(int _dur, const wxString &_text) : dur(_dur), text(_text) { } }; struct MatchGroup { - std::vector src; - typedef std::vector::iterator SrcIterator; + std::vector src; + typedef std::vector::iterator SrcIterator; wxString dst; int duration; int last_render_width; @@ -79,8 +79,8 @@ class KaraokeLineMatchDisplay : public wxControl { std::vector matched_groups; typedef std::vector::iterator MatchedGroupIterator; // Unmatched source syllables - std::deque unmatched_source; - typedef std::deque::iterator UnmatchedSourceIterator; + std::deque unmatched_source; + typedef std::deque::iterator UnmatchedSourceIterator; // Unmatched destination text wxString unmatched_destination;