Skip to content

Commit e122c3d

Browse files
Doxy class members moved from private to protected
1 parent 740677a commit e122c3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Adafruit_GFX.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ class GFXcanvas1 : public Adafruit_GFX {
328328
bool getRawPixel(int16_t x, int16_t y) const;
329329
void drawFastRawVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
330330
void drawFastRawHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
331-
uint8_t *buffer; // protected (no longer private) for subclass flexibility
331+
uint8_t *buffer; ///< Raster data: no longer private, allow subclass access
332332

333333
private:
334334
#ifdef __AVR__
@@ -359,7 +359,7 @@ class GFXcanvas8 : public Adafruit_GFX {
359359
uint8_t getRawPixel(int16_t x, int16_t y) const;
360360
void drawFastRawVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
361361
void drawFastRawHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
362-
uint8_t *buffer; // protected (no longer private) for subclass flexibility
362+
uint8_t *buffer; ///< Raster data: no longer private, allow subclass access
363363
};
364364

365365
/// A GFX 16-bit canvas context for graphics
@@ -385,7 +385,7 @@ class GFXcanvas16 : public Adafruit_GFX {
385385
uint16_t getRawPixel(int16_t x, int16_t y) const;
386386
void drawFastRawVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
387387
void drawFastRawHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
388-
uint16_t *buffer; // protected (no longer private) for subclass flexibility
388+
uint16_t *buffer; ///< Raster data: no longer private, allow subclass access
389389
};
390390

391391
#endif // _ADAFRUIT_GFX_H

0 commit comments

Comments
 (0)