1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-27 20:27:45 +00:00

Correct spelling of ...visible (was ...vissible) in all source files.

modified:   ../inc/bitblt.h
	modified:   ../inc/devif.h
	modified:   ../src/bitblt.c
	modified:   ../src/dosmouse.c
	modified:   ../src/dspif.c
	modified:   ../src/initdsp.c
	modified:   ../src/keyevent.c
	modified:   ../src/vesafns.asm
	modified:   ../src/vesainit.c
	modified:   ../src/vgainit.c
	modified:   ../src/vmemsave.c
	modified:   ../src/xbbt.c
	modified:   ../src/xc.c
	modified:   ../src/xc.c.orig
	modified:   ../src/xinit.c
	modified:   ../src/xlspwin.c
	modified:   ../src/xscroll.c
	modified:   ../src/xwinman.c
This commit is contained in:
Nick Briggs
2017-06-22 23:32:22 -07:00
parent afb6ae3397
commit cef5b57a9d
18 changed files with 114 additions and 114 deletions

4
inc/bitblt.h Executable file → Normal file
View File

@@ -51,8 +51,8 @@ extern int DisplayRasterWidth;
#ifdef DOS
#define HideCursor { (currentdsp->mouse_invissible)(currentdsp, IOPage68K); }
#define ShowCursor { (currentdsp->mouse_vissible)(IOPage68K->dlmousex, \
#define HideCursor { (currentdsp->mouse_invisible)(currentdsp, IOPage68K); }
#define ShowCursor { (currentdsp->mouse_visible)(IOPage68K->dlmousex, \
IOPage68K->dlmousey); }
#elif OLD_CURSOR

10
inc/devif.h Executable file → Normal file
View File

@@ -216,13 +216,13 @@ typedef struct
unsigned long (* bitblt_from_screen)();
unsigned long (* scroll_region)(); /* ie. bbt from screen to screen */
void (* mouse_invissible)(); /* MOUSE_INVISSIBLE
void (* mouse_invisible)(); /* MOUSE_INVISSIBLE
args: self (a dsp), iop (an IOPAGE preferably the one and only)
This method makes the mouse invissible on the screen. Note that
This method makes the mouse invisible on the screen. Note that
the dsp supplys the method and the iop supplys the data. */
void (* mouse_vissible)(); /* MOUSE_VISSIBLE
void (* mouse_visible)(); /* MOUSE_VISSIBLE
args: self (a dsp), iop (an IOPAGE preferably the one and only)
This method makes the mouse vissible on the screen. Note that
This method makes the mouse visible on the screen. Note that
the dsp supplys the method and the iop supplys the data. */
MRegion Display; /* Dimensions of the physical display. */
unsigned short bitsperpixel;
@@ -258,7 +258,7 @@ typedef struct
Window SWGrav;
Window NWGrav;
GC Copy_GC;
MRegion Vissible;
MRegion Visible;
unsigned int InternalBorderWidth;
unsigned int ScrollBarWidth;
Pixmap ScrollBarPixmap;