mirror of https://github.com/macssh/macssh.git
removed ThirdCenterDialog() call
This commit is contained in:
parent
0a164fbe47
commit
f4eec08857
|
@ -89,8 +89,8 @@ Boolean SSH2RandomizeDialog( long *type, long *level, long *encrypt, Str255 comm
|
||||||
|
|
||||||
SetUpMovableModalMenus();
|
SetUpMovableModalMenus();
|
||||||
dlogFilterUPP = NewModalFilterProc(RandomizeFilter);
|
dlogFilterUPP = NewModalFilterProc(RandomizeFilter);
|
||||||
//dlog = GetNewMyDialog(rSSH2RandomizeDialog, 0L, (WindowPtr)-1L, NULL);
|
//dlog = GetNewMyDialog(rSSH2RandomizeDialog, 0L, (WindowPtr)-1L, (void *)ThirdCenterDialog);
|
||||||
dlog = GetNewMyDialog(rSSH2RandomizeDialog, 0L, (WindowPtr)-1L, (void *)ThirdCenterDialog);
|
dlog = GetNewMyDialog(rSSH2RandomizeDialog, 0L, (WindowPtr)-1L, NULL);
|
||||||
if ( dlog ) {
|
if ( dlog ) {
|
||||||
short item;
|
short item;
|
||||||
SInt16 itemType;
|
SInt16 itemType;
|
||||||
|
@ -308,7 +308,8 @@ void SSH2ErrorDialog(char *mess1)
|
||||||
|
|
||||||
InteractWithUser( true, 128, 128 );
|
InteractWithUser( true, 128, 128 );
|
||||||
|
|
||||||
dlog = GetNewMyDialog(rSSH2ErrorDialog, 0L, (WindowPtr)-1L, (void *)ThirdCenterDialog);
|
//dlog = GetNewMyDialog(rSSH2ErrorDialog, 0L, (WindowPtr)-1L, (void *)ThirdCenterDialog);
|
||||||
|
dlog = GetNewMyDialog(rSSH2ErrorDialog, 0L, (WindowPtr)-1L, NULL);
|
||||||
if ( dlog ) {
|
if ( dlog ) {
|
||||||
buf[0]=0; /* dont print extraneous garbage to the screen... */
|
buf[0]=0; /* dont print extraneous garbage to the screen... */
|
||||||
strncpy(buf, mess1, 255);
|
strncpy(buf, mess1, 255);
|
||||||
|
|
Loading…
Reference in New Issue