Changeset 1241232377 in tspsg for src/mainwindow.cpp


Ignore:
Timestamp:
Aug 31, 2013, 11:52:19 PM (11 years ago)
Author:
Oleksii Serdiuk
Branches:
appveyor, imgbot, master, readme
Children:
7ed8b57eea
Parents:
243b53b608
Message:

[BB10] Created BlackBerry? 10 packaging rules and fixed build errors.

Cherry-picks from:
0edec5a2aec568f1d6d370bc5f4826f379890207
bd4553fa91c90a175e2d2709c2823b2faf5d0818
ca9cb6dfa53108993c75186063a5aad525669c25

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mainwindow.cpp

    r243b53b608 r1241232377  
    6363#endif // NOSVG
    6464
    65 #if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
    66 #   include <QtConcurrent>
    67 #endif
     65#include <QtConcurrentRun>
    6866
    6967#include "os.h"
     
    9896{
    9997double i;
     98#ifdef Q_OS_BLACKBERRY
     99    return (std::modf(x, &i) == 0.0);
     100#else
    100101    return (modf(x, &i) == 0.0);
     102#endif
    101103}
    102104
Note: See TracChangeset for help on using the changeset viewer.