Fix MIDI import encoding issue on Windows

This commit is contained in:
Hyunin Song
2018-06-04 14:34:51 +09:00
parent 1af0f083ea
commit 3e538d510c
2 changed files with 13 additions and 3 deletions

View File

@@ -78,6 +78,11 @@ protected:
return m_file.read( _data, _len );
}
inline QByteArray readAllData()
{
return m_file.readAll();
}
inline void ungetChar( char _ch )
{
m_file.ungetChar( _ch );