Changeset 1241232377 in tspsg for src/mainwindow.cpp
- Timestamp:
- Aug 31, 2013, 11:52:19 PM (11 years ago)
- Branches:
- appveyor, imgbot, master, readme
- Children:
- 7ed8b57eea
- Parents:
- 243b53b608
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mainwindow.cpp
r243b53b608 r1241232377 63 63 #endif // NOSVG 64 64 65 #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) 66 # include <QtConcurrent> 67 #endif 65 #include <QtConcurrentRun> 68 66 69 67 #include "os.h" … … 98 96 { 99 97 double i; 98 #ifdef Q_OS_BLACKBERRY 99 return (std::modf(x, &i) == 0.0); 100 #else 100 101 return (modf(x, &i) == 0.0); 102 #endif 101 103 } 102 104
Note: See TracChangeset
for help on using the changeset viewer.