From 345a609884f23e2329b66c04a5815e527e7de40c Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Fri, 2 Jan 2004 00:05:22 +0000 Subject: [PATCH] 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 --- Gorm.m | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Gorm.m b/Gorm.m index c6cd1572..a4f7027d 100644 --- a/Gorm.m +++ b/Gorm.m @@ -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."); } } }