apply_line_edit(.h): fix extra ';' inside a class [-Wextra-semi] (clang) / extra ‘;’ [-Wpedantic] (gcc)

Change-Id: Ie75da8de308a5fe3a063cf929d0bb2ab739ad96f
Reviewed-on: https://code.wireshark.org/review/20276
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2017-02-26 09:42:40 +01:00 committed by Michael Mann
parent 8202dd37ef
commit b3539fdf86
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ public:
explicit ApplyLineEdit(QString linePlaceholderText, QWidget *parent = 0);
~ApplyLineEdit();
Q_PROPERTY(QString regex READ regex WRITE setRegEx);
Q_PROPERTY(bool emptyAllowed READ emptyAllowed WRITE setEmptyAllowed);
Q_PROPERTY(QString regex READ regex WRITE setRegEx)
Q_PROPERTY(bool emptyAllowed READ emptyAllowed WRITE setEmptyAllowed)
QString regex();
void setRegEx(QString);