Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support compilation with Qt 4.6 #1

Merged
merged 2 commits into from
Jul 6, 2012
Merged

Support compilation with Qt 4.6 #1

merged 2 commits into from
Jul 6, 2012

Commits on Jul 6, 2012

  1. Use copy ctor instead of conversion through QChar*

    Versions of Qt < 4.7 do not have a QString constructor from QChar*
    without specifying the size of the string. However, since the QString
    is copy-on-write, the QString object can be passed to the copy
    constructor of the return value directly!
    rolk committed Jul 6, 2012
    Configuration menu
    Copy the full SHA
    ec7057e View commit details
    Browse the repository at this point in the history
  2. Probe only for OpenGL levels available in this Qt version

    Each version of Qt supports a set of OpenGL levels; the level displayed
    to the user is only as high as what was supported at compile-time. Hence
    it should be harmless to degrade gracefully to previous Qt versions.
    rolk committed Jul 6, 2012
    Configuration menu
    Copy the full SHA
    0d17997 View commit details
    Browse the repository at this point in the history