The R Project SVN R-packages

Rev

Rev 8536 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8536 Rev 8589
Line 1... Line 1...
1
/*
1
/*
2
 *  R.app : a Cocoa front end to: "R A Computer Language for Statistical Data Analysis"
2
 *  R.app : a Cocoa front end to: "R A Computer Language for Statistical Data Analysis"
3
 *  
3
 *  
4
 *  R.app Copyright notes:
4
 *  R.app Copyright notes:
5
 *                     Copyright (C) 2004-16  The R Foundation
5
 *                     Copyright (C) 2004-26  The R Foundation
6
 *                     written by Stefano M. Iacus and Simon Urbanek
6
 *                     written by Stefano M. Iacus and Simon Urbanek
7
 *
7
 *
8
 *                  
8
 *                  
9
 *  R Copyright notes:
9
 *  R Copyright notes:
10
 *                     Copyright (C) 1995-1996   Robert Gentleman and Ross Ihaka
10
 *                     Copyright (C) 1995-1996   Robert Gentleman and Ross Ihaka
Line 32... Line 32...
32
 
32
 
33
#ifndef __RGUI_H__
33
#ifndef __RGUI_H__
34
#define __RGUI_H__
34
#define __RGUI_H__
35
 
35
 
36
/* GUI version */
36
/* GUI version */
37
#define R_GUI_VERSION_STR "1.82" /* it must be a string, but should parse to a valid real number - also change in InfoPlist.h */
37
#define R_GUI_VERSION_STR "1.83" /* it must be a string, but should parse to a valid real number - also change in InfoPlist.h */
38
 
38
 
39
/* macros for translatable strings */
39
/* macros for translatable strings */
40
#define NLS(S) NSLocalizedString(S,@"")
40
#define NLS(S) NSLocalizedString(S,@"")
41
#define NLSC(S,C) NSLocalizedString(S,C)
41
#define NLSC(S,C) NSLocalizedString(S,C)
42
 
42