summaryrefslogtreecommitdiff
path: root/games/wormz/patches/patch-ap
blob: cbb3e119f81e373efe3fff6140e00c00bee313cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
$NetBSD: patch-ap,v 1.1 2004/02/18 23:09:03 kristerw Exp $

--- XVision/Group.cc.orig	Wed Feb 18 23:15:27 2004
+++ XVision/Group.cc	Wed Feb 18 23:17:37 2004
@@ -5,7 +5,7 @@
 #define GroupBackground RGB(0, 0x22, 0x95)
 //#define GroupBackground RGB(0x20, 0x20, 0x20)
 
-Group::Group(const Align _align=VAVertical)
+Group::Group(const Align _align)
     : first(0), last(0), current(0), ChildAlign(_align)
 {
   SetColor(GroupBackground, ciBackground);
@@ -109,7 +109,7 @@
   }
 }
 
-void Group::ReArrange(bool CallParent=TRUE, View * except=0)
+void Group::ReArrange(bool CallParent, View * except)
 {
   if (!app_global->CanReArrange)
     return;
@@ -282,7 +282,7 @@
   View::PutEvent(event);
 }
 
-void Group::SetHidden(bool _hidden, bool rearrange=TRUE)
+void Group::SetHidden(bool _hidden, bool rearrange)
 {
   if ((!_hidden) && (rearrange))
     app_global->StopRedraw();