diff options
| author | Rafael Fernández López <[email protected]> | 2007-06-19 17:09:27 +0000 |
|---|---|---|
| committer | Rafael Fernández López <[email protected]> | 2007-06-19 17:09:27 +0000 |
| commit | 740b3b0ca4a39e3df96e6a305163cf5d93061d02 (patch) | |
| tree | d294ab37aca720ca19b33b9756938ea4746a3aa1 /src/klistview.cpp | |
| parent | 2e6dc566dd2f2027203df72302aa75110a31c4ae (diff) | |
Fix for not C99 compliant systems when trying to use trunc() function. I have defined this function on kdefakes library, so we have it KDE wide.
BUG: 146963
svn path=/trunk/KDE/kdebase/apps/; revision=677663
Diffstat (limited to 'src/klistview.cpp')
| -rw-r--r-- | src/klistview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/klistview.cpp b/src/klistview.cpp index 1cba47b1b..9be5dadd8 100644 --- a/src/klistview.cpp +++ b/src/klistview.cpp @@ -21,7 +21,8 @@ #include "klistview.h" #include "klistview_p.h" -#include <math.h> // trunc +#include <math.h> // trunc on C99 compliant systems +#include <kdefakes.h> // trunc for not C99 compliant systems #include <QApplication> #include <QPainter> |
