From f083764234b157c650a893913c1ff1c11bc2bbee Mon Sep 17 00:00:00 2001
From: Rene Brun <Rene.Brun@cern.ch>
Date: Wed, 3 Apr 2002 10:41:40 +0000
Subject: [PATCH] Add additional information in TGClient::GetColorByName after
 printing the Warning; "GetColorByName", "couldn't retrieve color xxxx"  This
 problem typically appears when running ROOT from  an X terminal with not
 enough memory and another application  like Netscape is already running 
 ====> Kill Netscape and start again ROOT

I am tired to always answer the same question.


git-svn-id: http://root.cern.ch/svn/root/trunk@4295 27541ba8-7e3a-0410-8455-c3a389f83636
---
 gui/src/TGClient.cxx | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gui/src/TGClient.cxx b/gui/src/TGClient.cxx
index e7bfd1f311e..4cf1e704e98 100644
--- a/gui/src/TGClient.cxx
+++ b/gui/src/TGClient.cxx
@@ -1,4 +1,4 @@
-// @(#)root/gui:$Name:  $:$Id: TGClient.cxx,v 1.13 2001/10/03 20:59:59 rdm Exp $
+// @(#)root/gui:$Name:  $:$Id: TGClient.cxx,v 1.14 2001/11/28 16:05:41 rdm Exp $
 // Author: Fons Rademakers   27/12/97
 
 /*************************************************************************
@@ -603,6 +603,10 @@ Bool_t TGClient::GetColorByName(const char *name, ULong_t &pixel) const
       status = kFALSE;
    } else if(!gVirtualX->AllocColor(attributes.fColormap, color)) {
       Warning("GetColorByName", "couldn't retrieve color %s", name);
+      Printf(" This problem typically appears when running ROOT from ");
+      Printf(" an X terminal with not enough memory and another application");
+      Printf(" like Netscape is already running");
+      Printf(" ====> Kill Netscape and start again ROOT");
       status = kFALSE;
    }
 
-- 
GitLab