From e46b8c1ab54ef024a22d196f6f86909e788dc611 Mon Sep 17 00:00:00 2001 From: Doctor Kamber Date: Fri, 25 Jul 2008 12:14:30 +0300 Subject: [PATCH] Honour 80 colums per line limit --- qt/leleja/mytabreportdialog.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qt/leleja/mytabreportdialog.cpp b/qt/leleja/mytabreportdialog.cpp index fffcf03..b95aa9d 100644 --- a/qt/leleja/mytabreportdialog.cpp +++ b/qt/leleja/mytabreportdialog.cpp @@ -14,7 +14,8 @@ MyTabReportDialog::MyTabReportDialog(QWidget *parent) setupUi(this); - connect(this->unitComboBox, SIGNAL(currentIndexChanged(int )), this, SLOT(updateLineEdits())); + connect(this->unitComboBox, SIGNAL(currentIndexChanged(int )), + this, SLOT(updateLineEdits())); // pixmapChanged = true; @@ -113,7 +114,8 @@ void MyTabReportDialog::drawMyRank(QPainter *painter) // Load rank image m_image = QImage(m_rank.getImageFileName()); if (m_image.isNull()) { - std::cout << "MyTabReportDialog::drawMyRank(): the loading of the image failed\n"; + std::cout << "MyTabReportDialog::drawMyRank(): " + << "the loading of the image failed\n"; // return; } -- 2.11.4.GIT