Should be faster than using a full string. Found by krazy.
---
 src/effectstack/parametercontainer.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/effectstack/parametercontainer.cpp 
b/src/effectstack/parametercontainer.cpp
index 9e5ecbd..82b228a 100644
--- a/src/effectstack/parametercontainer.cpp
+++ b/src/effectstack/parametercontainer.cpp
@@ -163,7 +163,7 @@ ParameterContainer::ParameterContainer(QDomElement effect, 
ItemInfo info, Effect
             QStringList listitems = pa.attribute("paramlist").split(';');
             if (listitems.count() == 1) {
                 // probably custom effect created before change to ';' as 
separator
-                listitems = pa.attribute("paramlist").split(",");
+                listitems = pa.attribute("paramlist").split(',');
             }
             QDomElement list = pa.firstChildElement("paramlistdisplay");
             QStringList listitemsdisplay;
-- 
1.7.10.4



Reply via email to