# File lib/tapkit/control/sortordering.rb, line 44
                        def compare_ci_descending( left, right )
                                left  = left.upcase
                                right = right.upcase

                                if left > right then
                                        -1
                                elsif left < right then
                                        1
                                else
                                        0
                                end
                        end