summaryrefslogtreecommitdiff
path: root/otk/renderstyle.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-23 05:20:13 +0000
committerDana Jansens <danakj@orodu.net>2003-01-23 05:20:13 +0000
commit28b8f67562bb7eb15134f2bf7a8394f0a009b9ba (patch)
tree69eaa560ba90666b995d46b32ec64518e4b9a529 /otk/renderstyle.cc
parent7b7ae097a0d389a35967fdab4ea310effcfc42c2 (diff)
remove the word "sticky" from everywhere, and replace with "all desktops". change the titlebar layout to use D instead of S for the all-desktops button
Diffstat (limited to 'otk/renderstyle.cc')
-rw-r--r--otk/renderstyle.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/otk/renderstyle.cc b/otk/renderstyle.cc
index 28f4aa2d..a2cfae21 100644
--- a/otk/renderstyle.cc
+++ b/otk/renderstyle.cc
@@ -192,12 +192,12 @@ RenderStyle::RenderStyle(int screen, const std::string &stylefile)
data, 8, 8);
}
- _stick_mask = new PixmapMask();
- _stick_mask->w = _stick_mask->h = 8;
+ _alldesk_mask = new PixmapMask();
+ _alldesk_mask->w = _alldesk_mask->h = 8;
{
//char data[] = { 0x00, 0x00, 0x18, 0x3c, 0x3c, 0x18, 0x00, 0x00 };
char data[] = { 0x00, 0x66, 0x66, 0x00, 0x00, 0x66, 0x66, 0x00 };
- _stick_mask->mask =
+ _alldesk_mask->mask =
XCreateBitmapFromData(**display,
display->screenInfo(_screen)->rootWindow(),
data, 8, 8);
@@ -252,7 +252,7 @@ RenderStyle::~RenderStyle()
delete _max_mask;
delete _icon_mask;
- delete _stick_mask;
+ delete _alldesk_mask;
delete _close_mask;
}