summaryrefslogtreecommitdiffstats
path: root/src/qpushbuttonshowpassword.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2020-02-25 11:29:05 +0100
committerAnne Jan Brouwer <brouwer@annejan.com>2020-02-25 11:29:05 +0100
commitae116715f3e78f55a8988ac33ee47de76c9c3690 (patch)
tree8e62ab91806db973e33de4cd17e0dffc968cc2c8 /src/qpushbuttonshowpassword.cpp
parentccc4eabcbf816ecea445bb862d8bf8bff975cb50 (diff)
Minor cleanup
Diffstat (limited to 'src/qpushbuttonshowpassword.cpp')
-rw-r--r--src/qpushbuttonshowpassword.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qpushbuttonshowpassword.cpp b/src/qpushbuttonshowpassword.cpp
index 7f8f7f79..8a92c611 100644
--- a/src/qpushbuttonshowpassword.cpp
+++ b/src/qpushbuttonshowpassword.cpp
@@ -9,11 +9,11 @@
* @param parent
* the parent window
*/
-QPushButtonShowPassword::QPushButtonShowPassword(QLineEdit* line, QWidget *parent)
+QPushButtonShowPassword::QPushButtonShowPassword(QLineEdit *line,
+ QWidget *parent)
: QPushButton(parent),
iconEdit(QIcon::fromTheme("show", QIcon(":/icons/view.svg"))),
- iconEditPushed(
- QIcon::fromTheme("hide-new", QIcon(":/icons/hide.svg"))) {
+ iconEditPushed(QIcon::fromTheme("hide-new", QIcon(":/icons/hide.svg"))) {
setIcon(iconEdit);
connect(this, SIGNAL(clicked(bool)), this, SLOT(buttonClicked(bool)));
this->line = line;