* some small cleanup

* fFirstPage should be of type off_t



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24532 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich
2008-03-23 16:01:03 +00:00
parent e26a4ce3e9
commit 96d23158ea
2 changed files with 85 additions and 46 deletions
+2 -2
View File
@@ -56,7 +56,7 @@ public:
class PrintJobReader {
BFile fJobFile; // the job file
int32 fNumberOfPages; // the number of pages in the job file
int32 fFirstPage; // the page number of the first page
off_t fFirstPage; // the page number of the first page
BMessage fJobSettings; // the settings extracted from the job file
off_t* fPageIndex; // start positions of pages in the job file
@@ -80,7 +80,7 @@ public:
float GetScale() const;
// retrieve page
status_t GetPage(int no, PrintJobPage& pjp);
status_t GetPage(int32 no, PrintJobPage& pjp);
};
#endif