X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fmarginwidget.cpp;h=0d35c5fc6e981718513e7c56d421fd3d8be98ada;hb=64a21e782d6c9081f13f8398e6408c13648d1d14;hp=2d663cdc18b17a18740dfc7126b11da13f99e579;hpb=e9e4e5e7ea46132262fbd53f708dafc039b3b24f;p=pulseview.git diff --git a/pv/view/marginwidget.cpp b/pv/view/marginwidget.cpp index 2d663cdc..0d35c5fc 100644 --- a/pv/view/marginwidget.cpp +++ b/pv/view/marginwidget.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -30,7 +29,8 @@ using std::shared_ptr; namespace pv { -namespace view { +namespace views { +namespace TraceView { MarginWidget::MarginWidget(View &parent) : ViewWidget(parent) @@ -62,12 +62,11 @@ void MarginWidget::contextMenuEvent(QContextMenuEvent *event) menu->exec(event->globalPos()); } -void MarginWidget::keyPressEvent(QKeyEvent *e) +void MarginWidget::keyPressEvent(QKeyEvent *event) { - assert(e); + assert(event); - if (e->key() == Qt::Key_Delete) - { + if (event->key() == Qt::Key_Delete) { const auto items = this->items(); for (auto &i : items) if (i->selected()) @@ -75,5 +74,6 @@ void MarginWidget::keyPressEvent(QKeyEvent *e) } } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv