use Qt method if available

This commit is contained in:
M2j 2012-02-17 19:51:01 +01:00
parent ce7029776a
commit 9e03cf0715
1 changed files with 3 additions and 1 deletions

View File

@ -32,7 +32,7 @@ import logging
import os.path
import types
from PyQt4 import QtCore, QtGui
from PyQt4 import QtCore, QtGui, Qt
log = logging.getLogger(__name__)
@ -308,6 +308,8 @@ def create_separated_list(stringlist):
``stringlist``
List of unicode strings
"""
if Qt.qVersion() >= u'4.8':
return unicode(QtCore.QLocale.createSeparatedList(stringlist))
if not stringlist:
return u''
elif len(stringlist) == 1: