'fixed' code (cough)

This commit is contained in:
Andreas Preikschat 2012-12-04 22:22:08 +01:00
parent 3629c8a535
commit c5f34a8637
1 changed files with 6 additions and 3 deletions

View File

@ -32,6 +32,7 @@ The :mod:`openlp.core.utils` module provides the utility libraries for OpenLP.
from datetime import datetime from datetime import datetime
from distutils.version import LooseVersion from distutils.version import LooseVersion
import logging import logging
import locale
import os import os
import re import re
from subprocess import Popen, PIPE from subprocess import Popen, PIPE
@ -496,15 +497,17 @@ def locale_compare(string1, string2):
or 0, depending on whether string1 collates before or after string2 or or 0, depending on whether string1 collates before or after string2 or
is equal to it. Comparison is case insensitive. is equal to it. Comparison is case insensitive.
""" """
# Function locale.strcol() from standard Python library does not work # Function locale.strcoll() from standard Python library does not work
# properly on Windows and probably somewhere else. # properly on Windows and probably somewhere else.
return QtCore.QString.localeAwareCompare(string1.lower(), string2.lower()) return locale.strcoll(string1.lower(), string2.lower())
# TODO: check code
#return QtCore.QString.localeAwareCompare(string1.lower(), string2.lower())
# For performance reasons provide direct reference to compare function # For performance reasons provide direct reference to compare function
# without wrapping it in another function making te string lowercase. # without wrapping it in another function making te string lowercase.
# This is needed for sorting songs. # This is needed for sorting songs.
locale_direct_compare = QtCore.QString.localeAwareCompare locale_direct_compare = locale.strcoll
from languagemanager import LanguageManager from languagemanager import LanguageManager