Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Running code-format for visualization #28892

Merged
merged 1 commit into from Feb 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion Fireworks/Core/src/CmsAnnotation.cc
Expand Up @@ -275,7 +275,9 @@ Bool_t CmsAnnotation::Handle(TGLRnrCtx& rnrCtx, TGLOvlSelectRecord& selRec, Even
}
return kTRUE;
}
default: { return kFALSE; }
default: {
return kFALSE;
}
}

return false;
Expand Down
2 changes: 1 addition & 1 deletion Fireworks/Core/src/CmsShowSearchFiles.cc
Expand Up @@ -192,7 +192,7 @@ void CmsShowSearchFiles::openClicked() {
void CmsShowSearchFiles::showPrefixes() {
if (nullptr == m_prefixMenu) {
m_prefixMenu = new TGPopupMenu(this);
const char* const(*itEnd)[s_columns] = s_prefixes + sizeof(s_prefixes) / sizeof(const char * [3]);
const char* const(*itEnd)[s_columns] = s_prefixes + sizeof(s_prefixes) / sizeof(const char* [3]);
int index = 0;
for (const char* const(*it)[s_columns] = s_prefixes; it != itEnd; ++it, ++index) {
//only add the protocols this version of the code actually can load
Expand Down
4 changes: 3 additions & 1 deletion Fireworks/Core/src/FWPopupMenu.cc
Expand Up @@ -72,7 +72,9 @@ class FWPopupMenu : public TGPopupMenu {
void* dummy = nullptr;
return EndMenu(dummy);
}
default: { break; }
default: {
break;
}
}

return kTRUE;
Expand Down
4 changes: 3 additions & 1 deletion Fireworks/FWInterface/src/FWPSetTableManager.cc
Expand Up @@ -370,7 +370,9 @@ void FWPSetTableManager::handleEntry(const edm::Entry &entry, const std::string
createScalarString(data, entry.getEventRange());
break;
}
default: { break; }
default: {
break;
}
}
}

Expand Down