From d1b2c03152d7b1c8975bc6b9ff0a30897b5c8e01 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 23 Aug 2002 05:35:34 +0000 Subject: [PATCH] get default line width to 1, and make it a more easily used parameter in BPen --- src/GCCache.hh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/GCCache.hh b/src/GCCache.hh index 536a4746..fc4ba133 100644 --- a/src/GCCache.hh +++ b/src/GCCache.hh @@ -44,7 +44,7 @@ public: private: BGCCacheContext(const BaseDisplay * const _display) : display(_display), gc(0), pixel(0ul), fontid(0ul), - function(0), subwindow(0), used(false), screen(~(0u)), _linewidth(0) {} + function(0), subwindow(0), used(false), screen(~(0u)), linewidth(1) {} const BaseDisplay *display; GC gc; @@ -113,10 +113,10 @@ private: class BPen { public: inline BPen(const BColor &_color, const XFontStruct * const _font = 0, - int _function = GXcopy, int _subwindow = ClipByChildren, - int _linewidth = 0) - : color(_color), font(_font), function(_function), subwindow(_subwindow), - cache(_color.display()->gcCache()), item(0), linewidth(_linewidth) { } + int _linewidth = 1, int _function = GXcopy, + int _subwindow = ClipByChildren) + : color(_color), font(_font), linewidth(_linewidth), function(_function), + subwindow(_subwindow), cache(_color.display()->gcCache()), item(0) { } inline ~BPen(void) { if (item) cache->release(item); } @@ -129,9 +129,9 @@ public: private: const BColor &color; const XFontStruct *font; + int linewidth; int function; int subwindow; - int linewidth; mutable BGCCache *cache; mutable BGCCacheItem *item; -- 2.45.2