Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions gui/gui/src/TGFileBrowser.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -621,20 +621,6 @@ void TGFileBrowser::RecursiveRemove(TObject *obj)
void TGFileBrowser::Refresh(Bool_t /*force*/)
{
TTimer::SingleShot(200, "TGFileBrowser", this, "Update()");
return; // disable refresh for the time being...
// coverity[unreachable]
TCursorSwitcher cursorSwitcher(this, fListTree);
static UInt_t prev = 0;
UInt_t curr = gROOT->GetListOfBrowsables()->GetSize();
if (!prev) prev = curr;

if (prev != curr) { // refresh gROOT
TGListTreeItem *sav = fListLevel;
fListLevel = 0;
BrowseObj(gROOT);
fListLevel = sav;
prev = curr;
}
}

////////////////////////////////////////////////////////////////////////////////
Expand Down
5 changes: 0 additions & 5 deletions gui/guihtml/src/TGHtmlParse.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -935,11 +935,6 @@ int TGHtml::Tokenize()
#endif
case Html_NOSCRIPT:
break;
// coverity[unreachable]
if (!fHasScript) break;
#ifdef pIsInMeachnism
pIsInNoScript = 1;
#endif
case Html_SCRIPT:
#ifdef pIsInMeachnism
pIsInScript = 1;
Expand Down
Loading