diff -r 9c72858d4b7a -r c9a969db1469 Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py --- a/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py Fri Feb 12 18:48:21 2010 +0000 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py Fri Feb 12 19:02:38 2010 +0000 @@ -68,11 +68,11 @@ """ Private method to generate a properties item in the properties list. - @param path file/directory name the property applies to (string or QString) - @param propName name of the property (string or QString) - @param propValue value of the property (string or QString) + @param path file/directory name the property applies to (string) + @param propName name of the property (string) + @param propValue value of the property (string) """ - QTreeWidgetItem(self.propsList, QStringList() << path << propName << propValue) + QTreeWidgetItem(self.propsList, [path, propName, propValue]) def closeEvent(self, e): """