comparison FXAnalyse.c @ 135:77539f2597b1

Code cleanup
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Wed, 22 Jan 2014 12:29:38 +0100
parents bd28161e5ac2
children 7b9cf3d4346e
comparison
equal deleted inserted replaced
134:bd28161e5ac2 135:77539f2597b1
47 47
48 48
49 double utc; 49 double utc;
50 double Ch1, Ch2, Ch3, Ch4; 50 double Ch1, Ch2, Ch3, Ch4;
51 double Math1, Math2, Math3, Math4, Math5; 51 double Math1, Math2, Math3, Math4, Math5;
52 double N1, N2, N3, N4; 52 double N1, N2, N3;
53 53
54 54
55 // panels 55 // panels
56 static int MainPanel; 56 static int MainPanel;
57 static int CalcNPanel; 57 static int CalcNPanel;
536 { 536 {
537 switch (event) 537 switch (event)
538 { 538 {
539 case EVENT_COMMIT: 539 case EVENT_COMMIT:
540 QuitUserInterface(0); 540 QuitUserInterface(0);
541 mupRelease(MathParser1);
542 mupRelease(MathParser2);
543 mupRelease(MathParser3);
544 mupRelease(MathParser4);
545 mupRelease(MathParser5);
546 break; 541 break;
547 } 542 }
548 return 0; 543 return 0;
549 } 544 }
550 545