<p>Hi<br></p><p>I've written a piece of code that seems to work fine in PyQt 4.0.1 which is in Debian Etch. Basically it just takes a list of string and saves it using QSettings object. The code is similar to:</p><p>settings = QSettings()</p>
<p>strings = [u'string0', u'string1', u'string2', u'string3', u'string4', u'string5', u'string6', u'string7', u'string8', u'string9']</p><p>settings.saveValue("Header", QVariant(strings))</p>
<p>This works fine, but on PyQt 4.4.3 it gives an error: </p><p> QVariant::save: unable to save type 429.</p><p>I've tried using QStringList instead, but no luck.</p><p>What is causing this and is there anything I can do about it? </p>