]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix for bug #76932: Fix missing TEveException argument
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Jan 2011 05:28:48 +0000 (05:28 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Jan 2011 05:28:48 +0000 (05:28 +0000)
EVE/EveBase/AliEveTrackCounterEditor.cxx

index f6cc9e06fa495e3e77ab63187ba8ae34ca508586..c6821ffee9279e38f38e1b6b2fa60675bf8301c8 100644 (file)
@@ -225,9 +225,10 @@ AliEveTrackCounterEditor::~AliEveTrackCounterEditor()
 
 void AliEveTrackCounterEditor::UpdateModel()
 {
-  if (fGedEditor && fM && fGedEditor->GetModel() == fM->GetEditorObject("TEveElement::GetEditorObject"))
+  TEveException e;
+  if (fGedEditor && fM && fGedEditor->GetModel() == fM->GetEditorObject(e))
   {
-    SetModel(fM->GetEditorObject("TEveElement::GetEditorObject"));
+    SetModel(fM->GetEditorObject(e));
   }
 }