Skip to content

Instantly share code, notes, and snippets.

@UniversalSuperBox
Last active April 30, 2018 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UniversalSuperBox/2f2f2e0a8fd3397409ca5d673538eb38 to your computer and use it in GitHub Desktop.
Save UniversalSuperBox/2f2f2e0a8fd3397409ca5d673538eb38 to your computer and use it in GitHub Desktop.
Test of standaloneDayName giving incorrect values
import QtQuick 2.6
import QtQuick.Controls 1.4
Rectangle {
id: root;
Label {
font.pointSize: 32;
anchors.horizontalCenter: parent.horizontalCenter;
text: Qt.locale().name + ":" + Qt.locale(Qt.locale().name).standaloneDayName((0), Locale.ShortFormat);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment