|
From: <cn...@us...> - 2023-05-26 01:56:22
|
Revision: 1387
http://sourceforge.net/p/seq/svn/1387
Author: cn187
Date: 2023-05-26 01:56:15 +0000 (Fri, 26 May 2023)
Log Message:
-----------
[qt6] fix qt4 breakage
Modified Paths:
--------------
showeq/branches/cn187_devel/src/spells.cpp
Modified: showeq/branches/cn187_devel/src/spells.cpp
===================================================================
--- showeq/branches/cn187_devel/src/spells.cpp 2023-05-26 01:06:19 UTC (rev 1386)
+++ showeq/branches/cn187_devel/src/spells.cpp 2023-05-26 01:56:15 UTC (rev 1387)
@@ -304,7 +304,7 @@
//with Qt6, the split is leaving a line with only a null character in it,
//which causes the program to abort when it tries to process the almost
//empty line. This works around it. TODO investigate further and fix
- if (it->remove('\0').isEmpty())
+ if (it->remove(QChar('\0')).isEmpty())
break;
newSpell = new Spell(*it);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|