author | simon <simon> | 2002-11-07 16:54:11 (UTC) |
---|---|---|
committer | simon <simon> | 2002-11-07 16:54:11 (UTC) |
commit | d73b9f89f31f5b8c3cf89985a09c3b7af56cd6d6 (patch) (unidiff) | |
tree | f57a220cea859a0910e6032052b312b51ee40f2e | |
parent | e30087fa4347c60b622e35b8c99fab64d821bd2f (diff) | |
download | opie-d73b9f89f31f5b8c3cf89985a09c3b7af56cd6d6.zip opie-d73b9f89f31f5b8c3cf89985a09c3b7af56cd6d6.tar.gz opie-d73b9f89f31f5b8c3cf89985a09c3b7af56cd6d6.tar.bz2 |
- include math.h for sin() and cos()
-rw-r--r-- | noncore/apps/checkbook/graph.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/apps/checkbook/graph.cpp b/noncore/apps/checkbook/graph.cpp index a0d8b78..0f25453 100644 --- a/noncore/apps/checkbook/graph.cpp +++ b/noncore/apps/checkbook/graph.cpp | |||
@@ -28,16 +28,18 @@ | |||
28 | 28 | ||
29 | #include "graph.h" | 29 | #include "graph.h" |
30 | #include "graphinfo.h" | 30 | #include "graphinfo.h" |
31 | 31 | ||
32 | #include <qcolor.h> | 32 | #include <qcolor.h> |
33 | #include <qfontmetrics.h> | 33 | #include <qfontmetrics.h> |
34 | #include <qpainter.h> | 34 | #include <qpainter.h> |
35 | 35 | ||
36 | #include <math.h> | ||
37 | |||
36 | Graph::Graph( QWidget *parent, GraphInfo *d, const QString &name, int flags ) | 38 | Graph::Graph( QWidget *parent, GraphInfo *d, const QString &name, int flags ) |
37 | : QWidget( parent, name, flags ) | 39 | : QWidget( parent, name, flags ) |
38 | { | 40 | { |
39 | data = d; | 41 | data = d; |
40 | 42 | ||
41 | graph.setOptimization( QPixmap::BestOptim ); | 43 | graph.setOptimization( QPixmap::BestOptim ); |
42 | } | 44 | } |
43 | 45 | ||