summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/plucker.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-reader/plucker.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/plucker.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/noncore/apps/opie-reader/plucker.h b/noncore/apps/opie-reader/plucker.h
index 84e855c..d3ca732 100644
--- a/noncore/apps/opie-reader/plucker.h
+++ b/noncore/apps/opie-reader/plucker.h
@@ -2,7 +2,7 @@
#define __plucker_h
#include "CExpander.h"
-#include <zlib.h>
+#include "zlib/zlib.h"
#include "ztxt.h"
#include "pdb.h"
#include "CBuffer.h"
@@ -58,17 +58,17 @@ class CPlucker : public CExpander, Cpdb
int bgetch();
public:
virtual void sizes(unsigned long& _file, unsigned long& _text)
- {
- _file = file_length;
- _text = textlength;
+ {
+ _file = file_length;
+ _text = textlength;
//ntohl(hdr0.size);
- }
+ }
virtual bool hasrandomaccess() { return true; }
virtual ~CPlucker()
- {
- if (expandedtextbuffer != NULL) delete [] expandedtextbuffer;
- if (compressedtextbuffer != NULL) delete [] compressedtextbuffer;
- }
+ {
+ if (expandedtextbuffer != NULL) delete [] expandedtextbuffer;
+ if (compressedtextbuffer != NULL) delete [] compressedtextbuffer;
+ }
CPlucker();
virtual int openfile(const char *src);
virtual int getch();
@@ -78,9 +78,9 @@ class CPlucker : public CExpander, Cpdb
virtual CList<Bkmk>* getbkmklist();
virtual bool hyperlink(unsigned int n);
virtual MarkupType PreferredMarkup()
- {
- return cNONE;
- }
+ {
+ return cNONE;
+ }
};
#endif