Errata

Programming the Be Operating System

Errata for Programming the Be Operating System

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 11
In Figure 1-2, the second box from top should be labeled

"BClipboard"

Anonymous   
Printed Page 27-28
The SimpleApp source code listing, 4 errors

1) Line 1 now reads:

#include <Window.h>

Should read:

#include <interface/Window.h>

2) Line 2 now reads:

#include <Application.h>

Should read:

#include <app/Application.h>

3) Line 5 on page 28 now reads:

main()

Should read:

int main()
or
int main(int argc, char **argv)

4) There is no mention of having to include the x86/libbe.so
object in order to compile the code.

Anonymous   
Printed Page 67
In the last paragraph,

"AttachedToView"

Should read:

"AttachedToWindow"

Anonymous   
Printed Page 96
In the Alert program example, this piece of the program appears

to create an error. I downloaded the program examples this morning
and found that the Alert program gives me the same error that I got
last night (and it kept me up for a couple hours too :-p). I have
not been able to figure out the correct code by looking at either
the "Be Developer's Guide" or "The Be Book", an HTML document that Be
distributes to help coders. Please help so I can get a full night's
sleep again.

Anonymous   
Printed Page 96

In the Note/Tip, the sixth line now reads:

"HelloApplication"

Should read:

"myHelloApplication"

Anonymous   
Printed Page 156

The fourth line in the second paragraph now reads:

"...70 pixels to the left..."

Should read:

"...70 pixels to the right..."

Anonymous   
Printed Page 191

In the first paragraph, lines 4-5 now read:

"...needs to overridden."

Should read:

"...needs to be overridden."

Anonymous   
Printed Page 203

In the code listing, the fifth line from the bottom now reads:

"// checkbox break;"

"break" should be in next line. Should read:

"//checkbox
break;

Anonymous   
Printed Page 316
Figure 8-16 is the wrong picture. I didn't find the picture with

the view hierarchy in the whole book.

Anonymous   
Printed Page 332

In Figure 9-2, the lower circle now reads:

"BWindow object"

Should read:

"BView object"

Anonymous   
Printed Page 367

In the code listing, the third line reads:

"show()"

This shouldn't appear here. Save panel should be shown when "save as"
is selected from menu.

Anonymous