From 5f34d3cf4393dad5022096f264f3fbe917db0661 Mon Sep 17 00:00:00 2001 From: Tobias Triffterer <tobias@ep1.ruhr-uni-bochum.de> Date: Wed, 11 Aug 2021 06:28:33 +0200 Subject: [PATCH] Remove unnecessary Namespace Prefixes Those were added by the IDE but are not needed... --- src/clientgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/clientgui.cpp b/src/clientgui.cpp index b925c5d..284dea2 100644 --- a/src/clientgui.cpp +++ b/src/clientgui.cpp @@ -261,7 +261,7 @@ void ClientGui::fillEventsIntoHistogram(const QString& adcchannels) _rootcanvas.getCanvas()->Update(); } -void Fp311Online::ClientGui::updateHistogram(const QString& bincontents) +void ClientGui::updateHistogram(const QString& bincontents) { if (_state.adcState == ExperimentState::AdcState::Running) return; @@ -298,7 +298,7 @@ void ClientGui::clearHistogram(const bool fromServer) sendSimpleActiontoServer(Protocol::Action::clearHistogram); } -void Fp311Online::ClientGui::saveRootFile() +void ClientGui::saveRootFile() { const QString filename = QFileDialog::getSaveFileName( this, -- GitLab