Changed the alert to a NSLog call.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@18301 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-01-02 00:05:22 +00:00
parent 24b724f4af
commit 345a609884

7
Gorm.m
View file

@ -299,12 +299,7 @@ NSString *GormWillDetachObjectFromDocumentNotification = @"GormWillDetachObjectF
{
if([a count] > 0)
{
BOOL result = NSRunAlertPanel(NULL, _(@"Please deactivate any user bundles before starting Gorm."),
_(@"Continue"),_( @"Quit"), nil);
if(result != NSAlertDefaultReturn)
{
[self terminate: self];
}
NSLog(@"WARNING: Gorm has detected that you are using user bundles. Please make certain that these are capatible with Gorm as some bundles can cause issues which may corrupt your .gorm files.");
}
}
}