[BACK]Return to MyDocument.m CVS log [TXT][DIR] Up to [local] / OpenXM / src / cfep

Diff for /OpenXM/src/cfep/MyDocument.m between version 1.11 and 1.12

version 1.11, 2016/10/03 07:42:29 version 1.12, 2016/10/07 02:02:31
Line 76  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 76  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
         if ([textViewIn isContinuousSpellCheckingEnabled]) [textViewIn toggleContinuousSpellChecking: self]; // Turn off the spell checking.          if ([textViewIn isContinuousSpellCheckingEnabled]) [textViewIn toggleContinuousSpellChecking: self]; // Turn off the spell checking.
     if ([textViewIn isAutomaticQuoteSubstitutionEnabled]) [textViewIn toggleAutomaticQuoteSubstitution: self]; // Turn off the smart quote.      if ([textViewIn isAutomaticQuoteSubstitutionEnabled]) [textViewIn toggleAutomaticQuoteSubstitution: self]; // Turn off the smart quote.
     if ([MyEnvironment isX11Installed] != 1)      if ([MyEnvironment isX11Installed] != 1)
           [self messageDialog: NSLocalizedString(@"XQuartz(X11) is not installed. To install it, visit http://www.xquartz.org.",nil) with: 0];            [self messageDialog: NSLocalizedString(@"XQuartz(X11) is not installed and cfep/asir will not run properly. To install it, visit http://www.xquartz.org.",nil) with: 0];
 //      if ([MyEnvironment isGccInstalled] != 1)  //      if ([MyEnvironment isGccInstalled] != 1)
 //        [self messageDialog: NSLocalizedString(@"gcc is not installed. To install it, insert MacOS DVD1 and open Xcode Tools->XcodeTools.mpkg",nil) with: 0];  //        [self messageDialog: NSLocalizedString(@"gcc is not installed. To install it, insert MacOS DVD1 and open Xcode Tools->XcodeTools.mpkg",nil) with: 0];
         [self sayTheMessageAboutX];          [self sayTheMessageAboutX];
Line 249  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 249  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
 -(void) sayTheMessageAboutX {  -(void) sayTheMessageAboutX {
   NSLog(@"myDocumentSaidTheMessageAboutX=%d\n",myDocumentSaidTheMessageAboutX);    NSLog(@"myDocumentSaidTheMessageAboutX=%d\n",myDocumentSaidTheMessageAboutX);
   if (!myDocumentSaidTheMessageAboutX) {    if (!myDocumentSaidTheMessageAboutX) {
     if ([MyEnvironment checkX] != 1)        // [[NSWorkspace sharedWorkspace] launchApplication: @"Console"]; // check if it works for apps in Utilities
         if ([MyEnvironment checkX] != 1) {
           // [self messageDialog:            // [self messageDialog:
           //    NSLocalizedString(@"A few commands (plot, ...) cannot be used, because X11 is not running.",nil) with: 0];            //    NSLocalizedString(@"A few commands (plot, ...) cannot be used, because X11 is not running.",nil) with: 0];
           [self changeOutputCounterFieldWithString:            [self changeOutputCounterFieldWithString:
             [NSLocalizedString(@"Output mini-view: ",nil) stringByAppendingString:              [NSLocalizedString(@"Output mini-view: ",nil) stringByAppendingString:
                  NSLocalizedString(@"A few commands (plot, ...) cannot be used, because X11 is not running.",nil)]];                   NSLocalizedString(@"Starting XQuartz(X11)",nil)]];
             if ([[NSWorkspace sharedWorkspace] launchApplication: @"XQuartz"]) {
                 NSLog(@"Started XQuartz.\n");
             }else{
                 NSLog(@"Starting XQuartz failed.\n");
                 [self messageDialog:
                     NSLocalizedString(@"Starting XQuartz(X11) failed. A few commands (plot, ...) cannot be used, because X11 is not running.",nil) with: 0];
             }
         }
         myDocumentSaidTheMessageAboutX = 1;          myDocumentSaidTheMessageAboutX = 1;
   }    }
 }  }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>