From cbb3a6d8ac44bc5f50b16b61f61c6f516fbab8cb Mon Sep 17 00:00:00 2001 From: Sergey Linev <S.Linev@gsi.de> Date: Thu, 1 Dec 2022 16:09:16 +0100 Subject: [PATCH] [gui] use proper list of args in TBrowserImp plugins Last Option_t* was missing --- etc/plugins/TBrowserImp/P010_TRootBrowser.C | 4 ++-- etc/plugins/TBrowserImp/P020_TRootBrowserLite.C | 4 ++-- etc/plugins/TBrowserImp/P030_RWebBrowserImp.C | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/etc/plugins/TBrowserImp/P010_TRootBrowser.C b/etc/plugins/TBrowserImp/P010_TRootBrowser.C index bef47be3aaf..1be893c6973 100644 --- a/etc/plugins/TBrowserImp/P010_TRootBrowser.C +++ b/etc/plugins/TBrowserImp/P010_TRootBrowser.C @@ -1,7 +1,7 @@ void P010_TRootBrowser() { gPluginMgr->AddHandler("TBrowserImp", "TRootBrowser", "TRootBrowser", - "Gui", "NewBrowser(TBrowser *, const char *, Int_t, Int_t, UInt_t, UInt_t)"); + "Gui", "NewBrowser(TBrowser *, const char *, Int_t, Int_t, UInt_t, UInt_t, Option_t *)"); gPluginMgr->AddHandler("TBrowserImp", "TRootBrowser", "TRootBrowser", - "Gui", "NewBrowser(TBrowser *, const char *, UInt_t, UInt_t)"); + "Gui", "NewBrowser(TBrowser *, const char *, UInt_t, UInt_t, Option_t *)"); } diff --git a/etc/plugins/TBrowserImp/P020_TRootBrowserLite.C b/etc/plugins/TBrowserImp/P020_TRootBrowserLite.C index caf8d40f6d2..5d54054a72a 100644 --- a/etc/plugins/TBrowserImp/P020_TRootBrowserLite.C +++ b/etc/plugins/TBrowserImp/P020_TRootBrowserLite.C @@ -1,7 +1,7 @@ void P020_TRootBrowserLite() { gPluginMgr->AddHandler("TBrowserImp", "TRootBrowserLite", "TRootBrowserLite", - "Gui", "NewBrowser(TBrowser *, const char *, Int_t, Int_t, UInt_t, UInt_t)"); + "Gui", "NewBrowser(TBrowser *, const char *, Int_t, Int_t, UInt_t, UInt_t, Option_t *)"); gPluginMgr->AddHandler("TBrowserImp", "TRootBrowserLite", "TRootBrowserLite", - "Gui", "NewBrowser(TBrowser *, const char *, UInt_t, UInt_t)"); + "Gui", "NewBrowser(TBrowser *, const char *, UInt_t, UInt_t, Option_t *)"); } diff --git a/etc/plugins/TBrowserImp/P030_RWebBrowserImp.C b/etc/plugins/TBrowserImp/P030_RWebBrowserImp.C index 5db407bb766..8cb946adaf4 100644 --- a/etc/plugins/TBrowserImp/P030_RWebBrowserImp.C +++ b/etc/plugins/TBrowserImp/P030_RWebBrowserImp.C @@ -1,7 +1,7 @@ void P030_RWebBrowserImp() { gPluginMgr->AddHandler("TBrowserImp", "ROOT::Experimental::RWebBrowserImp", "ROOT::Experimental::RWebBrowserImp", - "ROOTBrowserv7", "NewBrowser(TBrowser *, const char *, Int_t, Int_t, UInt_t, UInt_t)"); + "ROOTBrowserv7", "NewBrowser(TBrowser *, const char *, Int_t, Int_t, UInt_t, UInt_t, Option_t *)"); gPluginMgr->AddHandler("TBrowserImp", "ROOT::Experimental::RWebBrowserImp", "ROOT::Experimental::RWebBrowserImp", - "ROOTBrowserv7", "NewBrowser(TBrowser *, const char *, UInt_t, UInt_t)"); + "ROOTBrowserv7", "NewBrowser(TBrowser *, const char *, UInt_t, UInt_t, Option_t *)"); } -- GitLab