Skip to content

Commit

Permalink
[webgui] use fully qualified namespace fpr RLogChannel
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Jan 13, 2025
1 parent cd6f93a commit 99dca16
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion geom/webviewer/src/RGeomData.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

ROOT::RLogChannel &ROOT::RGeomLog()
{
static RLogChannel sLog("ROOT.Geom");
static ROOT::RLogChannel sLog("ROOT.Geom");
return sLog;
}

Expand Down
2 changes: 1 addition & 1 deletion graf2d/gpadv7/src/RAttrBase.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using namespace ROOT::Experimental;

ROOT::RLogChannel &ROOT::Experimental::GPadLog()
{
static RLogChannel sLog("ROOT.GPad");
static ROOT::RLogChannel sLog("ROOT.GPad");
return sLog;
}

Expand Down
2 changes: 1 addition & 1 deletion gui/browsable/src/RElement.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ using namespace std::string_literals;

ROOT::RLogChannel &ROOT::BrowsableLog()
{
static RLogChannel sLog("ROOT.Browsable");
static ROOT::RLogChannel sLog("ROOT.Browsable");
return sLog;
}

Expand Down
2 changes: 1 addition & 1 deletion gui/browserv7/src/RBrowserData.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ using namespace std::string_literals;

ROOT::RLogChannel &ROOT::BrowserLog()
{
static RLogChannel sLog("ROOT.Browser");
static ROOT::RLogChannel sLog("ROOT.Browser");
return sLog;
}

Expand Down
2 changes: 1 addition & 1 deletion gui/cefdisplay/src/gui_handler.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

ROOT::RLogChannel &CefWebDisplayLog()
{
static RLogChannel sChannel("ROOT.CefWebDisplay");
static ROOT::RLogChannel sChannel("ROOT.CefWebDisplay");
return sChannel;
}

Expand Down
2 changes: 1 addition & 1 deletion gui/fitpanelv7/src/RFitPanelModel.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

ROOT::RLogChannel &ROOT::Experimental::FitPanelLog()
{
static RLogChannel sLog("ROOT.FitPanel");
static ROOT::RLogChannel sLog("ROOT.FitPanel");
return sLog;
}

Expand Down
2 changes: 1 addition & 1 deletion gui/qt5webdisplay/rootwebpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

ROOT::RLogChannel &QtWebDisplayLog()
{
static RLogChannel sChannel("ROOT.QtWebDisplay");
static ROOT::RLogChannel sChannel("ROOT.QtWebDisplay");
return sChannel;
}

Expand Down
2 changes: 1 addition & 1 deletion gui/webdisplay/src/RWebDisplayArgs.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ using namespace ROOT;

ROOT::RLogChannel &ROOT::WebGUILog()
{
static RLogChannel sLog("ROOT.WebGUI");
static ROOT::RLogChannel sLog("ROOT.WebGUI");
return sLog;
}

Expand Down

0 comments on commit 99dca16

Please sign in to comment.