X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Ftext.cpp;h=34e01403c604419448a8712237a6e65c7d664014;hb=f36d026c7b8b398b88765ec5b67a3c767fe5fbad;hp=d14903523d238f59e33e0db29686bfb09825d002;hpb=6ad6896385a2068046fb779db2f8f27f537d71f4;p=apple2 diff --git a/src/gui/text.cpp b/src/gui/text.cpp index d149035..34e0140 100644 --- a/src/gui/text.cpp +++ b/src/gui/text.cpp @@ -1,20 +1,20 @@ // // Static text class // -// by James L. Hammons +// by James Hammons // #include "text.h" #include "guimisc.h" -Text::Text(uint32 x/*= 0*/, uint32 y/*= 0*/, uint32 w/*= 0*/, uint32 h/*= 0*/, Element * parent/*= NULL*/): +Text::Text(uint32_t x/*= 0*/, uint32_t y/*= 0*/, uint32_t w/*= 0*/, uint32_t h/*= 0*/, Element * parent/*= NULL*/): Element(x, y, w, h, parent) { fgColor = 0xFF8484FF, bgColor = 0xFF84FF4D; } -Text::Text(uint32 x, uint32 y, std::string s, uint32 fg/*= 0xFF8484FF*/, uint32 bg/*= 0xFF84FF4D*/, Element * parent/*= NULL*/): +Text::Text(uint32_t x, uint32_t y, std::string s, uint32_t fg/*= 0xFF8484FF*/, uint32_t bg/*= 0xFF84FF4D*/, Element * parent/*= NULL*/): Element(x, y, 0, 0, parent), text(s) { fgColor = fg, bgColor = bg;