From 85b6723c707949f5689bfca6f442d9cbb73f2ee9 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 30 Apr 2002 14:33:42 +0000 Subject: - no default args in method impls - don't return void in non-void functions --- (limited to 'noncore/apps/tableviewer/ui/commonwidgets.cpp') diff --git a/noncore/apps/tableviewer/ui/commonwidgets.cpp b/noncore/apps/tableviewer/ui/commonwidgets.cpp index bf4c36f..4c47951 100644 --- a/noncore/apps/tableviewer/ui/commonwidgets.cpp +++ b/noncore/apps/tableviewer/ui/commonwidgets.cpp @@ -28,7 +28,7 @@ #include #include "commonwidgets.h" -DateEdit::DateEdit( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ) +DateEdit::DateEdit( QWidget *parent, const char *name, WFlags f ) : QToolButton(parent, name) { QPopupMenu *m1 = new QPopupMenu(this); @@ -82,7 +82,7 @@ void DateEdit::subValueChanged() emit valueChanged(current); } -TimeEdit::TimeEdit( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ) +TimeEdit::TimeEdit( QWidget *parent, const char *name, WFlags f ) : QWidget(parent, name, f) { QHBoxLayout *layout = new QHBoxLayout(this, 0); @@ -190,7 +190,7 @@ void TimeEdit::subValueChanged() emit valueChanged(time()); } -IntEdit::IntEdit( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ) +IntEdit::IntEdit( QWidget *parent, const char *name, WFlags f ) : QSpinBox(INT_MIN, INT_MAX, 1, parent, name) { setValue(0); -- cgit v0.9.0.2