diff options
author | Chris Xiong <chirs241097@gmail.com> | 2020-01-11 22:04:07 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2020-01-11 22:57:01 +0800 |
commit | 12ad6495fa332ea499485082272f796c4b08c83c (patch) | |
tree | 644607f6523185050a069fcf6eb6255c45060181 /core/qmpmidiread.cpp | |
parent | 06496661120f7858f26a29f76631e6f0a0ebae7f (diff) | |
download | QMidiPlayer-12ad6495fa332ea499485082272f796c4b08c83c.tar.xz |
Bring back i18n support.
Address compiler warnings in QDialSkualptureStyle.
Introduced build BUILD_PORTABLE, replacing QMP_BUILD_MODE in the QMake project.
The QMake project is now fully covered by the CMake project and officially
deprecated.
Diffstat (limited to 'core/qmpmidiread.cpp')
-rw-r--r-- | core/qmpmidiread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/qmpmidiread.cpp b/core/qmpmidiread.cpp index 697a5bd..c7d11f2 100644 --- a/core/qmpmidiread.cpp +++ b/core/qmpmidiread.cpp @@ -221,7 +221,7 @@ uint32_t CSMFReader::read_chunk(int is_header) else if(strncmp(hdr,"MTrk",4)) { - error(0,"Wrong track chunk header. Ignoring the whole chunk"); + error(0,"Wrong track chunk header. Ignoring the entire chunk."); uint32_t chnklen=read_u32();fseek(f,chnklen,SEEK_CUR);return 0; } else return read_track(),1; |