diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-13 18:42:43 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-14 23:18:41 +0900 |
| commit | 5bba09ee4570e1227de99565d41ae9fb6bc14ae1 (patch) | |
| tree | 29d378b82102f1de620ee07a8167d569f7f031d7 /src/cuesheeteditor.cpp | |
| parent | 546952a11f82de4741f508f401ab613c172ad293 (diff) | |
| download | soundkonverter-5bba09ee.tar.gz soundkonverter-5bba09ee.zip | |
cmake conversion
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 802b45c5566c3916e46250060ecef332f055fc26)
Diffstat (limited to 'src/cuesheeteditor.cpp')
| -rw-r--r-- | src/cuesheeteditor.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cuesheeteditor.cpp b/src/cuesheeteditor.cpp index 9fcb9a3..8d83106 100644 --- a/src/cuesheeteditor.cpp +++ b/src/cuesheeteditor.cpp @@ -140,7 +140,7 @@ void CuesheetEditor::generate() if( index == -1 ) break; time = text.left( index ); - sscanf( time, "%i:%i", &min, &sec ); + sscanf( time.local8Bit().data(), "%i:%i", &min, &sec ); timeList.append( min * 60 + sec ); text.remove( 0, index + 2 ); } @@ -323,3 +323,5 @@ void CuesheetEditor::shift() //replace title by performer and reverse tTextEdit->setText(newText); } */ + +#include "cuesheeteditor.moc" |
