Mark places that need to be refactored with // PORTME:

Searching for __APPLE, WIN32 or X11 did give me many false results. I instead marked most ifdef's that I would like to get rid of with the text // PORTME:, so they can be easily found by a global search.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11155 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher
2016-02-11 12:02:36 +00:00
parent a3c0dac034
commit 50ee3bcd66
94 changed files with 323 additions and 435 deletions
+2 -2
View File
@@ -53,7 +53,7 @@ private:
int width;
int height;
Fl_Paged_Device *helper;
#ifdef __APPLE__
#ifdef __APPLE__ // PORTME: platform surface driver
CFMutableDataRef pdfdata;
CGContextRef oldgc;
CGContextRef gc;
@@ -86,7 +86,7 @@ public:
int h() { return height; }
};
#if defined(__APPLE__)
#if defined(__APPLE__) // PORTME: platform surface driver
/* Mac class to reimplement Fl_Paged_Device::printable_rect() */
class FL_EXPORT Fl_Quartz_Surface_ : public Fl_System_Printer {