Qt: workaround a C4138 warning generated by MSVC2019

MSVC falsely reports a '*/' found outside of comment warning

Change-Id: I41366c9760f6b698a1c6a4309cdfa2f9828bb0c2
Reviewed-on: https://code.wireshark.org/review/36961
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Petri-Dish: Martin Kaiser <wireshark@kaiser.cx>
Tested-by: Petri Dish Buildbot
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Pascal Quantin 2020-04-27 22:51:18 +02:00 committed by Gerald Combs
parent f867d127ec
commit 50806f2f1b
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ bool FilterExpressionToolBar::eventFilter(QObject *obj, QEvent *event)
return QToolBar::eventFilter(obj, event);
}
void FilterExpressionToolBar::closeMenu(QAction */*sender*/)
void FilterExpressionToolBar::closeMenu(QAction * /*sender*/)
{
foreach(QAction * entry, actions())
{