X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/b6700f77dd8e07fdab0d40ea4bc91f8d0c03ae70..8fd0d685a6837af460dbb4efd6f72c3a6f049cbc:/src/filterbar/filterbar.cpp diff --git a/src/filterbar/filterbar.cpp b/src/filterbar/filterbar.cpp index 93e929c45..30235eb44 100644 --- a/src/filterbar/filterbar.cpp +++ b/src/filterbar/filterbar.cpp @@ -1,23 +1,10 @@ -/*************************************************************************** - * Copyright (C) 2006-2010 by Peter Penz * - * Copyright (C) 2006 by Gregor Kališnik * - * Copyright (C) 2012 by Stuart Citrin * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA * - ***************************************************************************/ +/* + * SPDX-FileCopyrightText: 2006-2010 Peter Penz + * SPDX-FileCopyrightText: 2006 Gregor Kališnik + * SPDX-FileCopyrightText: 2012 Stuart Citrin + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ #include "filterbar.h" @@ -119,7 +106,7 @@ void FilterBar::keyReleaseEvent(QKeyEvent* event) switch (event->key()) { case Qt::Key_Escape: if (m_filterInput->text().isEmpty()) { - emit closeRequest(); + Q_EMIT closeRequest(); } else { m_filterInput->clear(); } @@ -127,7 +114,7 @@ void FilterBar::keyReleaseEvent(QKeyEvent* event) case Qt::Key_Enter: case Qt::Key_Return: - emit focusViewRequest(); + Q_EMIT focusViewRequest(); break; default: