summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/graph.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/checkbook/graph.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/checkbook/graph.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/checkbook/graph.h b/noncore/apps/checkbook/graph.h
index 7379be7..40b23cd 100644
--- a/noncore/apps/checkbook/graph.h
+++ b/noncore/apps/checkbook/graph.h
@@ -30,12 +30,13 @@
#define GRAPH_H
#include <qpixmap.h>
#include <qwidget.h>
class GraphInfo;
+class QPainter;
class Graph : public QWidget
{
Q_OBJECT
public:
@@ -52,12 +53,12 @@ class Graph : public QWidget
private:
GraphInfo *data;
QPixmap graph;
void initGraph();
- void drawBarChart();
- void drawLineChart();
- void drawPieChart();
+ void drawBarChart( int, int, float );
+ void drawLineChart( int, int, float );
+ void drawPieChart( int, int, float );
};
#endif