Skip to content

Commit 252275c

Browse files
committed
[graf*,gui] rename CINT to Cling
1 parent 6cfdfb6 commit 252275c

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed

graf2d/cocoa/inc/TGCocoa.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ class TGCocoa : public TVirtualX {
469469
static Atom_t fgDeleteWindowAtom;
470470

471471
private:
472-
//I'd prefer to use = delete syntax from C++0x11, but this file is processed by CINT.
472+
//TODO: use instead = delete syntax from C++0x11
473473
TGCocoa(const TGCocoa &rhs);
474474
TGCocoa &operator = (const TGCocoa &rhs);
475475

graf2d/cocoa/inc/TGQuartz.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class TGQuartz : public TGCocoa {
9696
void AlignTTFString();
9797
Bool_t IsTTFStringVisible(Int_t x, Int_t y, UInt_t w, UInt_t h);
9898
void RenderTTFString(Int_t x, Int_t y, ETextMode mode);
99-
//I have to use void * instead of QuartzPixmap * because of CINT :(
99+
//TODO: move internal headers like TGQuartz.h out of the public ROOT user interface. Then we can also use XQuartz types like QuartzPixmap* instead of void * in functions like these
100100
void DrawFTGlyphIntoPixmap(void *pixmap, FT_Bitmap *source, ULong_t fore, ULong_t back, Int_t bx, Int_t by);
101101

102102
void SetAA();

graf2d/fitsio/src/TFITS.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
///
4343
/// Please have a look to the tutorials ($ROOTSYS/tutorials/fitsio/) to see
4444
/// some examples. IMPORTANT: to run tutorials it is required that
45-
/// you change the current working directory of ROOT (CINT) shell to the
45+
/// you change the current working directory of the ROOT shell to the
4646
/// tutorials directory. Example:
4747
/// ~~~ {.cpp}
4848
/// root [1] gSystem->ChangeDirectory("tutorials/fitsio")

graf2d/win32gdk/inc/TGWin32ProxyDefs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#ifndef ROOT_TGWin32ProxyDefs
1414
#define ROOT_TGWin32ProxyDefs
1515

16-
#include "Rtypes.h" // CINT headers
16+
#include "Rtypes.h"
1717

1818

1919
#define _NAME4_(name1,name2,name3,name4) _NAME3_(name1,name2,name3)name4

graf3d/gl/inc/TGLParametric.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ class TGLParametricEquation : public TNamed {
4949
Bool_t fModified;
5050

5151
typedef std::unique_ptr<TGLHistPainter> Painter_t;
52-
//C++ compiler do not need TGLhistPainter definition here, but I'm not sure about CINT,
53-
//so I've included TGLHistPainter definition.
5452
Painter_t fPainter;
5553

5654
public:

gui/ged/src/TStyleManager.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ Delete a style:
7575
The selected style can be deleted from the list when you use the
7676
Style menu/Delete or the corresponding tool bar button. The selected
7777
style is removed from the list of all available styles for the
78-
current ROOT session. WARRNING: it will be lost if you didn't saved
78+
current ROOT session. WARNING: it will be lost if you didn't saved
7979
it in a C++ macro file before its deletion. Also, you cannot delete
8080
the selected style if it is set to gStyle. A message 'Can not delete
81-
gStyle' will be displayed on the CINT prompt.
81+
gStyle' will be displayed on the ROOT prompt.
8282
8383
Editor's buttons:
8484
Open / close the style editor:

gui/gui/src/HelpText.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,9 +402,9 @@ command line.\n\n\
402402
You can interrupt a running macro by selecting the Tools menu / \n\
403403
Interrupt; by clicking on the corresponding toolbar button, or by \n\
404404
using Shift+F5 accelerator keys.\n\n\
405-
Interface to CINT Interpreter\n\n\
405+
Interface to Cling Interpreter\n\n\
406406
Any command entered in the 'Command' combo box will be passed to the\n\
407-
CINT interpreter. This combo box will keep the commands history and \n\
407+
Cling interpreter. This combo box will keep the commands history and \n\
408408
will allow you to re-execute the same commands during an editor session.\n\n"
409409
" Keyboard Bindings\n\n\
410410
The following table lists the keyboard shortcuts and accelerator keys.\n\n\

gui/gui/src/TGTextEditor.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@
107107
Interrupt; by clicking on the corresponding toolbar button, or by
108108
using Shift+F5 accelerator keys.
109109
110-
#### Interface to CINT Interpreter
110+
#### Interface to Cling Interpreter
111111
112112
Any command entered in the Command combo box will be passed to
113-
the CINT interpreter. This combo box will keep the commands history
113+
the Cling interpreter. This combo box will keep the commands history
114114
and will allow you to re-execute the same commands during an editor
115115
session.
116116

0 commit comments

Comments
 (0)