blob: 45870745cd9f024172d4eb8f2b51e8f3079649c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- src/attributes/IntItem.cpp.orig Thu Jun 22 15:56:42 2000
+++ src/attributes/IntItem.cpp Thu Sep 14 01:03:16 2000
@@ -6,15 +6,16 @@
*/
#include "IntItem.h"
-#include "values.h"
#include <qspinbox.h>
#ifdef SunOS_i86pc
#define MININT (-MAXINT - 1)
-#elif defined(_OS_WIN32_)
+#elif defined(_OS_WIN32_) || defined(__FreeBSD__)
#include "limits.h"
#define MININT INT_MIN
#define MAXINT INT_MAX
+#else
+ #include "values.h"
#endif
//*********************************************************************
|