From 6531e0953a04001bd96aac71b3ad49672ce21c00 Mon Sep 17 00:00:00 2001 From: neil Date: Thu, 4 Oct 2007 23:08:51 +0000 Subject: [PATCH] Added missing properties and fixed a few typos. git-svn-id: https://svn.aros.org:8080/svn/aros/trunk/AROS@26993 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- compiler/alib/domethod.c | 12 +-- compiler/include/aros/bootloader.h | 158 ++++++++++++++-------------- compiler/include/aros/cpu.h | 2 +- compiler/include/intuition/menudecorclass.h | 2 +- compiler/include/intuition/scrdecorclass.h | 2 +- compiler/include/intuition/windecorclass.h | 2 +- compiler/include/prefs/wanderer.h | 2 +- rom/intuition/changedecorationa.c | 2 +- rom/intuition/endscreennotify.c | 2 +- rom/intuition/menudecorclass.c | 2 +- rom/intuition/scrdecorclass.c | 2 +- rom/intuition/screennotifytask.c | 2 +- rom/intuition/screennotifytask.h | 2 +- rom/intuition/startscreennotifytaglist.c | 2 +- rom/intuition/windecorclass.c | 2 +- rom/oop/parseattrs.c | 4 +- rom/timer/readeclock.c | 2 +- rom/workbench/getnextappicon.c | 2 +- rom/workbench/sendappwindowmessage.c | 2 +- 19 files changed, 103 insertions(+), 103 deletions(-) diff --git a/compiler/alib/domethod.c b/compiler/alib/domethod.c index e1ca01715..8790a1181 100644 --- a/compiler/alib/domethod.c +++ b/compiler/alib/domethod.c @@ -23,19 +23,19 @@ Msg message) /* FUNCTION - Invokes a method on a BOOPSI object. The dispatcher of the class, the - object is inherited from, is called. For more information about methods + Invokes a method on a BOOPSI object. The dispatcher of the class the + object is inherited from is called. For more information about methods a class supports, see the class documentation. INPUTS - obj - The object, on which the method is to be performed on. + obj - The object on which the method is to be performed. message - The message. The first field is the same for all methods and - specifies which method is to be invokes (see + specifies which method is to be invoked (see ). RESULT - Class and method depending. See the class documentation. A value of 0 - can mean a valid return code but can also mean that a method was not + Class and method dependent. See the class documentation. A value of 0 + can be a valid return code but can also mean that a method is not supported. NOTES diff --git a/compiler/include/aros/bootloader.h b/compiler/include/aros/bootloader.h index d9fab8f3c..dcabd54eb 100644 --- a/compiler/include/aros/bootloader.h +++ b/compiler/include/aros/bootloader.h @@ -1,79 +1,79 @@ -#ifndef AROS_BOOTLOADER_H -#define AROS_BOOTLOADER_H - -/* - Copyright © 1995-2001, The AROS Development Team. All rights reserved. - $Id: bootloader.h 25411 2007-03-12 06:54:19Z sonic $ - - Desc: bootloader.resource general defines - Lang: english -*/ - -#ifndef EXEC_TYPES_H -#include -#endif -#ifndef EXEC_LISTS_H -#include -#endif -#ifndef UTILITY_TAGITEM_H -#include -#endif - -/* Requestable information */ -#define BL_BASE (TAG_USER) - -#define BL_MemoryMap (BL_BASE + 1) -#define BL_Memory (BL_BASE + 2) -#define BL_BootDev (BL_BASE + 3) -#define BL_Args (BL_BASE + 4) -#define BL_Modules (BL_BASE + 5) -#define BL_Drives (BL_BASE + 6) -#define BL_LoaderName (BL_BASE + 7) -#define BL_Video (BL_BASE + 8) - -/* Structures */ -struct MemMapNode { - struct MinNode node; - ULONG Base; - ULONG Length; - ULONG Type; -}; - -/* Defines for MemMapNode type field */ -#define MMAP_Type_Unknown 0 -#define MMAP_Type_RAM 1 -#define MMAP_Type_Reserved 2 -#define MMAP_Type_ACPIData 3 -#define MMAP_Type_ACPINVS 4 - -struct DriveInfoNode { - struct Node node; - UBYTE Number; - UBYTE Mode; - UWORD Cylinders; - UBYTE Heads; - UBYTE Sectors; -}; - -#define DriveMode_CHS 0 -#define DriveMode_LBA 1 - -struct VesaInfo { - APTR FrameBuffer; - ULONG FrameBufferSize; /* In KBytes! */ - ULONG XSize; - ULONG YSize; - ULONG BytesPerLine; - UWORD BitsPerPixel; - UWORD ModeNumber; - ULONG Masks[4]; - ULONG Shifts[4]; - UBYTE PaletteWidth; -}; - -#define VI_Red 0 -#define VI_Blue 1 -#define VI_Green 2 -#define VI_Alpha 3 - -#endif /* AROS_BOOTLOADER_H */ +#ifndef AROS_BOOTLOADER_H +#define AROS_BOOTLOADER_H + +/* + Copyright © 1995-2001, The AROS Development Team. All rights reserved. + $Id$ + + Desc: bootloader.resource general defines + Lang: english +*/ + +#ifndef EXEC_TYPES_H +#include +#endif +#ifndef EXEC_LISTS_H +#include +#endif +#ifndef UTILITY_TAGITEM_H +#include +#endif + +/* Requestable information */ +#define BL_BASE (TAG_USER) + +#define BL_MemoryMap (BL_BASE + 1) +#define BL_Memory (BL_BASE + 2) +#define BL_BootDev (BL_BASE + 3) +#define BL_Args (BL_BASE + 4) +#define BL_Modules (BL_BASE + 5) +#define BL_Drives (BL_BASE + 6) +#define BL_LoaderName (BL_BASE + 7) +#define BL_Video (BL_BASE + 8) + +/* Structures */ +struct MemMapNode { + struct MinNode node; + ULONG Base; + ULONG Length; + ULONG Type; +}; + +/* Defines for MemMapNode type field */ +#define MMAP_Type_Unknown 0 +#define MMAP_Type_RAM 1 +#define MMAP_Type_Reserved 2 +#define MMAP_Type_ACPIData 3 +#define MMAP_Type_ACPINVS 4 + +struct DriveInfoNode { + struct Node node; + UBYTE Number; + UBYTE Mode; + UWORD Cylinders; + UBYTE Heads; + UBYTE Sectors; +}; + +#define DriveMode_CHS 0 +#define DriveMode_LBA 1 + +struct VesaInfo { + APTR FrameBuffer; + ULONG FrameBufferSize; /* In KBytes! */ + ULONG XSize; + ULONG YSize; + ULONG BytesPerLine; + UWORD BitsPerPixel; + UWORD ModeNumber; + ULONG Masks[4]; + ULONG Shifts[4]; + UBYTE PaletteWidth; +}; + +#define VI_Red 0 +#define VI_Blue 1 +#define VI_Green 2 +#define VI_Alpha 3 + +#endif /* AROS_BOOTLOADER_H */ diff --git a/compiler/include/aros/cpu.h b/compiler/include/aros/cpu.h index d0b413622..e564d194a 100644 --- a/compiler/include/aros/cpu.h +++ b/compiler/include/aros/cpu.h @@ -193,7 +193,7 @@ /* The SP_OFFSET should be defined *ONLY* when not defined before. - Otherwise it would redefine daults from cpu-arch.h or machine.h file + Otherwise it would redefine defaults from cpu-arch.h or machine.h file */ #ifndef SP_OFFSET #define SP_OFFSET 0 diff --git a/compiler/include/intuition/menudecorclass.h b/compiler/include/intuition/menudecorclass.h index 7372ef98f..009ccd4e8 100644 --- a/compiler/include/intuition/menudecorclass.h +++ b/compiler/include/intuition/menudecorclass.h @@ -3,7 +3,7 @@ /* Copyright 1995-2001, The AROS Development Team. All rights reserved. - $Id: menudecorclass.h 12757 2001-12-08 22:23:57Z dariusb $ + $Id$ Desc: Headerfile for Intuitions' MENUDECORCLASS Lang: english diff --git a/compiler/include/intuition/scrdecorclass.h b/compiler/include/intuition/scrdecorclass.h index e70908749..bb5e5dc79 100644 --- a/compiler/include/intuition/scrdecorclass.h +++ b/compiler/include/intuition/scrdecorclass.h @@ -3,7 +3,7 @@ /* Copyright 1995-2001, The AROS Development Team. All rights reserved. - $Id: screendecorclass.h 12757 2001-12-08 22:23:57Z dariusb $ + $Id$ Desc: Headerfile for Intuitions' SCRDECORCLASS Lang: english diff --git a/compiler/include/intuition/windecorclass.h b/compiler/include/intuition/windecorclass.h index c7ac657b8..b8c9b2268 100644 --- a/compiler/include/intuition/windecorclass.h +++ b/compiler/include/intuition/windecorclass.h @@ -3,7 +3,7 @@ /* Copyright 1995-2001, The AROS Development Team. All rights reserved. - $Id: windecorclass.h 12757 2001-12-08 22:23:57Z dariusb $ + $Id$ Desc: Headerfile for Intuitions' WINDECORCLASS Lang: english diff --git a/compiler/include/prefs/wanderer.h b/compiler/include/prefs/wanderer.h index 4c9b6bdc0..3dbf2d0d3 100644 --- a/compiler/include/prefs/wanderer.h +++ b/compiler/include/prefs/wanderer.h @@ -3,7 +3,7 @@ /* Copyright 1995-2001, The AROS Development Team. All rights reserved. - $Id: wanderer.h 23386 2005-06-23 08:17:21Z NicJA $ + $Id$ Desc: wanderer prefs definitions Lang: English diff --git a/rom/intuition/changedecorationa.c b/rom/intuition/changedecorationa.c index 7efcf4aaa..08f7851d3 100644 --- a/rom/intuition/changedecorationa.c +++ b/rom/intuition/changedecorationa.c @@ -1,7 +1,7 @@ /* Copyright 1995-2007, The AROS Development Team. All rights reserved. Copyright 2001-2003, The MorphOS Development Team. All Rights Reserved. - $Id: changedecorationa.c 23476 2005-07-31 17:07:04Z stegerg, dariusb $ + $Id$ */ #include diff --git a/rom/intuition/endscreennotify.c b/rom/intuition/endscreennotify.c index 93647fbbf..14a6a1f1b 100644 --- a/rom/intuition/endscreennotify.c +++ b/rom/intuition/endscreennotify.c @@ -1,7 +1,7 @@ /* Copyright 1995-2007, The AROS Development Team. All rights reserved. Copyright 2001-2003, The MorphOS Development Team. All Rights Reserved. - $Id: endscreennotify.c 20651 2007-01-01 20:57:12Z d.brewka $ + $Id$ Remove a Intuition Notification. */ diff --git a/rom/intuition/menudecorclass.c b/rom/intuition/menudecorclass.c index 372d4797b..c0fb2a7e3 100644 --- a/rom/intuition/menudecorclass.c +++ b/rom/intuition/menudecorclass.c @@ -1,7 +1,7 @@ /* Copyright 1995-2005, The AROS Development Team. All rights reserved. Copyright 2001-2003, The MorphOS Development Team. All Rights Reserved. - $Id: imageclass.c 20651 2004-01-17 20:57:12Z chodorowski $ + $Id$ */ diff --git a/rom/intuition/scrdecorclass.c b/rom/intuition/scrdecorclass.c index 61f7bab89..a7c0dfb47 100644 --- a/rom/intuition/scrdecorclass.c +++ b/rom/intuition/scrdecorclass.c @@ -1,7 +1,7 @@ /* Copyright 1995-2005, The AROS Development Team. All rights reserved. Copyright 2001-2003, The MorphOS Development Team. All Rights Reserved. - $Id: imageclass.c 20651 2004-01-17 20:57:12Z chodorowski $ + $Id$ */ diff --git a/rom/intuition/screennotifytask.c b/rom/intuition/screennotifytask.c index 2c6808ee8..fff3621ed 100644 --- a/rom/intuition/screennotifytask.c +++ b/rom/intuition/screennotifytask.c @@ -1,6 +1,6 @@ /* Copyright 1995-2007, The AROS Development Team. All rights reserved. - $Id: screennotifytask.c 20886 2006-12-31 18:51:21Z dariusb $ + $Id$ */ #include diff --git a/rom/intuition/screennotifytask.h b/rom/intuition/screennotifytask.h index 2daf45fb4..813584c94 100644 --- a/rom/intuition/screennotifytask.h +++ b/rom/intuition/screennotifytask.h @@ -3,7 +3,7 @@ /* Copyright 1995-2007, The AROS Development Team. All rights reserved. - $Id: screennotifytask.h 23866 2006-12-31 12:09:51Z dariusb $ + $Id$ */ #define SCREENNOTIFYTASK_NAME " Screennotify Handler " diff --git a/rom/intuition/startscreennotifytaglist.c b/rom/intuition/startscreennotifytaglist.c index f60bc0234..92af2fb6d 100644 --- a/rom/intuition/startscreennotifytaglist.c +++ b/rom/intuition/startscreennotifytaglist.c @@ -1,7 +1,7 @@ /* Copyright 1995-2007, The AROS Development Team. All rights reserved. Copyright 2001-2003, The MorphOS Development Team. All Rights Reserved. - $Id: startscreennotifytaglist.c 20651 2006-12-30 20:57:12Z d.brewka $ + $Id$ Add a Intuition Notification. */ diff --git a/rom/intuition/windecorclass.c b/rom/intuition/windecorclass.c index a20960f42..3e32fb040 100644 --- a/rom/intuition/windecorclass.c +++ b/rom/intuition/windecorclass.c @@ -1,7 +1,7 @@ /* Copyright 1995-2005, The AROS Development Team. All rights reserved. Copyright 2001-2003, The MorphOS Development Team. All Rights Reserved. - $Id: imageclass.c 20651 2004-01-17 20:57:12Z chodorowski $ + $Id$ */ diff --git a/rom/oop/parseattrs.c b/rom/oop/parseattrs.c index 0eb5aec21..00e07ff60 100644 --- a/rom/oop/parseattrs.c +++ b/rom/oop/parseattrs.c @@ -82,8 +82,8 @@ if (numattrs > 32) return ooperr_ParseAttrs_TooManyAttrs; - /* Parse the taglist. Since we reimplement NexTagItem() instead - of calling it this hould be really fast. */ + /* Parse the taglist. Since we reimplement NextTagItem() instead + of calling it this should be really fast. */ while (!done) { register IPTR tag = tags->ti_Tag; diff --git a/rom/timer/readeclock.c b/rom/timer/readeclock.c index 78755de33..f8cb36148 100644 --- a/rom/timer/readeclock.c +++ b/rom/timer/readeclock.c @@ -1,6 +1,6 @@ /* Copyright © 1995-2007, The AROS Development Team. All rights reserved. - $Id: readeclock.c 12532 2001-10-27 19:46:10Z chodorowski $ + $Id$ Desc: ReadEClock() - read the base frequency of timers. Lang: english diff --git a/rom/workbench/getnextappicon.c b/rom/workbench/getnextappicon.c index e339c33b4..7e93a8fd0 100644 --- a/rom/workbench/getnextappicon.c +++ b/rom/workbench/getnextappicon.c @@ -1,6 +1,6 @@ /* Copyright © 1995-2007, The AROS Development Team. All rights reserved. - $Id: getnextappicon.c 19008 2003-07-30 22:53:38Z craid-hjb $ + $Id$ Desc: Accesses AppIcon information from workbench.library. Lang: English diff --git a/rom/workbench/sendappwindowmessage.c b/rom/workbench/sendappwindowmessage.c index dfb0550e7..1567541d1 100755 --- a/rom/workbench/sendappwindowmessage.c +++ b/rom/workbench/sendappwindowmessage.c @@ -1,6 +1,6 @@ /* Copyright 1995-2007, The AROS Development Team. All rights reserved. - $Id: sendappwindowmessage.c 19008 2007-01-30 22:53:38Z dariusb $ + $Id$ Desc: check if the given window is an app window and send a list of files to it Lang: English -- 2.11.4.GIT