patch that fixes compile error in kptview.cc
Davy Brion <[email protected]>
| Newsgroups | gmane.comp.kde.kplato |
|---|---|
| Message-ID | <[email protected]> |
this patch only adds #include <iostream.h> to kptview.cc so it doesn't error out when the code uses cerr. i could've just mentioned to add that line but i wanted to get some feedback on the way i should send my patches. please let me know if i need to change anything.
kptview.cc.patch
(text/x-diff, 313 B)
--- kplato/kptview.cc 2002-09-05 15:16:46.000000000 +0200
+++ my_kplato/kptview.cc 2002-09-05 15:31:16.000000000 +0200
@@ -34,6 +34,8 @@
#include <kdebug.h>
#include <klistview.h>
+#include <iostream.h>
+
KPTView::KPTView(KPTPart* part, QWidget* parent, const char* name)
: KoView(part, parent, name)