mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
Remove redundant initialization of ElidedLabel::_elideMode
The value gets already initialized by default member initialization, so there is no need to set it again in the constructor. Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
This commit is contained in:
parent
293be2c2e6
commit
1e6747cd1d
1 changed files with 0 additions and 1 deletions
|
@ -26,7 +26,6 @@ ElidedLabel::ElidedLabel(QWidget *parent)
|
|||
ElidedLabel::ElidedLabel(const QString &text, QWidget *parent)
|
||||
: QLabel(text, parent)
|
||||
, _text(text)
|
||||
, _elideMode(Qt::ElideNone)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue