Skip to content
Snippets Groups Projects
Commit 998749d6 authored by Rene Brun's avatar Rene Brun
Browse files

Start development version 5.13

From Axel:
prevent a "comparison between signed and unsigned" warning.


git-svn-id: http://root.cern.ch/svn/root/trunk@15770 27541ba8-7e3a-0410-8455-c3a389f83636
parent 1db4f528
No related branches found
No related tags found
No related merge requests found
......@@ -14,10 +14,10 @@
*
*/
#define ROOT_RELEASE "5.12/00"
#define ROOT_RELEASE_DATE "Jul 10 2006"
#define ROOT_RELEASE_TIME "18:49:28"
#define ROOT_VERSION_CODE 330752
#define ROOT_RELEASE "5.13/01"
#define ROOT_RELEASE_DATE "Jul 11 2006"
#define ROOT_RELEASE_TIME "18:35:41"
#define ROOT_VERSION_CODE 331009
#define ROOT_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#endif
5.12/00
5.13/01
// @(#)root/gl:$Name: $:$Id: TGLUtil.cxx,v 1.26 2006/02/23 16:44:52 brun Exp $
// @(#)root/gl:$Name: $:$Id: TGLUtil.cxx,v 1.27 2006/06/13 15:43:39 couet Exp $
// Author: Richard Maunder 25/05/2005
/*************************************************************************
......@@ -965,7 +965,7 @@ const UChar_t *TGLSelectionBuffer::GetPixelColor(Int_t px, Int_t py)const
if (py < 0)
py = 0;
if (px * fWidth * 4 + py * 4 > fBuffer.size())
if ((UInt_t)(px * fWidth * 4 + py * 4) > fBuffer.size())
return &fBuffer[0];
return &fBuffer[px * fWidth * 4 + py * 4];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment