aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/simplewidgets.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-09-17 15:39:49 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-09-17 15:39:49 -0700
commit0d1da0563b949695651cce7eb49f9a25b80d3431 (patch)
treec48e75ca5c929d86755bff27059b3bef7293c42d /qt-ui/simplewidgets.h
parentd6d82a5af8962899d20c1269ec94c0bd6afbb98b (diff)
downloadsubsurface-0d1da0563b949695651cce7eb49f9a25b80d3431.tar.gz
Random whitespace update
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.h')
-rw-r--r--qt-ui/simplewidgets.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h
index c9f5dc203..d665f133a 100644
--- a/qt-ui/simplewidgets.h
+++ b/qt-ui/simplewidgets.h
@@ -96,8 +96,10 @@ class DateWidget : public QWidget {
public:
DateWidget(QWidget *parent = 0);
QDate date() const;
-public slots:
- void setDate(const QDate& date);
+public
+slots:
+ void setDate(const QDate &date);
+
protected:
void paintEvent(QPaintEvent *event);
void mousePressEvent(QMouseEvent *event);
@@ -107,7 +109,8 @@ protected:
void changeEvent(QEvent *);
bool eventFilter(QObject *, QEvent *);
signals:
- void dateChanged(const QDate& date);
+ void dateChanged(const QDate &date);
+
private:
QDate mDate;
QCalendarWidget *calendarWidget;
@@ -120,6 +123,7 @@ public:
private
slots:
void buttonClicked(QAbstractButton *button);
+
private:
Ui::DiveComponentSelectionDialog ui;
struct dive *targetDive;
@@ -130,11 +134,12 @@ class TagFilter : public QWidget {
Q_OBJECT
public:
TagFilter(QWidget *parent = 0);
+
private:
Ui::TagFilter ui;
};
bool isGnome3Session();
-QImage grayImage(const QImage& coloredImg);
+QImage grayImage(const QImage &coloredImg);
#endif // SIMPLEWIDGETS_H