Skip to content
Snippets Groups Projects
  1. May 03, 2007
  2. May 02, 2007
  3. May 01, 2007
  4. Apr 30, 2007
    • Rene Brun's avatar
      in the TGraph destructor, reset fFunctions to 0 to avoid access to a deleted... · b94d454e
      Rene Brun authored
      in the TGraph destructor, reset fFunctions to 0 to avoid access to a deleted object in TGraph::RecursiveRemove.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18628 27541ba8-7e3a-0410-8455-c3a389f83636
      b94d454e
    • Olivier Couet's avatar
      - Better rendering of the sqrt symbol: · ebe74320
      Olivier Couet authored
        * The middle line is not vertical anymore.
        * The left line is thicker than the two other lines.
        * The line width depends on text's size.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18627 27541ba8-7e3a-0410-8455-c3a389f83636
      ebe74320
    • Philippe Canal's avatar
      From Paul: · ef5d0f46
      Philippe Canal authored
      Fix for crash on array initialization reported by Nick West.
      
      This was a programming error which would not ordinarily have caused
      a problem, but it interacted badly with a compiler bug in gcc 3.2.3.
      
      The programming mistake was initializing a const int& with an array
      element of type short.  Because this is a const reference the compiler
      should bind the ref to a temporary and copy the array element.  The
      original intent was to bind directly to the array element, but in
      this case there is no difference in the result since no modifications
      are ever made through the reference.  Unfortunately the gcc 3.2.3 compiler
      had a bug, and the generated code did not bind the reference correctly.
      Later versions of the compiler do not have this problem.
      
      The code fix is to simply use a const short instead of a const int&
      for this variable.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18626 27541ba8-7e3a-0410-8455-c3a389f83636
      ef5d0f46
    • Fons Rademakers's avatar
      use system ungif if available. · bc0b6b2f
      Fons Rademakers authored
      git-svn-id: http://root.cern.ch/svn/root/trunk@18625 27541ba8-7e3a-0410-8455-c3a389f83636
      bc0b6b2f
    • Rene Brun's avatar
      From Bertrand: · 3cc00826
      Rene Brun authored
      Attempt to use standard mbstowcs instead of custom gdk_nmbstowchar_ts.
      This allows do display accented and some special characters in
      TGTextView and in coming TGHtml widget.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18624 27541ba8-7e3a-0410-8455-c3a389f83636
      3cc00826
    • Olivier Couet's avatar
      - The previous fix (revision 1.29) broke the automatic computation of the · dd3c1c62
      Olivier Couet authored
        title size in TPaveStats::Paint. This fix makes it work again and takes
        also into account the problem which was supposed to be fixed in revision
        1.29.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18623 27541ba8-7e3a-0410-8455-c3a389f83636
      dd3c1c62
    • Fons Rademakers's avatar
      fix configure (by running autoconf on FC6 and applying our local mods). · a7f5007d
      Fons Rademakers authored
      Configure does now not use anymore XtMalloc and libXt to test if the
      X11 libs are installed. XtMalloc is part of libXt and not libX11.
      In the past this was not a problem as libXt was part of x11-devel or
      xorg-devel, but now FC6, Ubuntu, Debian, etc. have made a separate
      libXt-devel or equivalent package. Now a proper libX11 function is used
      for testing libX11 availability. This should solve a number of problems
      where libAfterImage was built without X11 support.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18622 27541ba8-7e3a-0410-8455-c3a389f83636
      a7f5007d
    • Fons Rademakers's avatar
      From Jan and Gerri: · c673f0a9
      Fons Rademakers authored
      Added two static methods to create a list of TFileInfo's:
      
         TList *TFileInfo::CreateList(const char *file)
      
      where 'file' is a text file with each line defining a file URL
      
         TList *TFileInfo::CreateListMatching(const char *files)
      
      where 'files' is
         i)   directory path; all regular files in the directory are added
         ii)  a file path; a list with a single element is created
         iii) a file-path containing wildcards '*' in the file name; a list with
              all the files consistent with the path are added.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18621 27541ba8-7e3a-0410-8455-c3a389f83636
      c673f0a9
  5. Apr 29, 2007
  6. Apr 28, 2007
  7. Apr 27, 2007
  8. Apr 26, 2007
Loading