summaryrefslogtreecommitdiff
path: root/core/pim
authorsimon <simon>2002-04-30 06:26:17 (UTC)
committer simon <simon>2002-04-30 06:26:17 (UTC)
commitf521dd69afdd07f46e41299846880289b727514b (patch) (side-by-side diff)
tree1e9fe07ead05cf0ddfbf34438f4e2d85c1e87380 /core/pim
parent702c4b745d42d9ad5fdcede0a40d85ea1b0577a6 (diff)
downloadopie-f521dd69afdd07f46e41299846880289b727514b.zip
opie-f521dd69afdd07f46e41299846880289b727514b.tar.gz
opie-f521dd69afdd07f46e41299846880289b727514b.tar.bz2
- no default arguments in method implementations
- don't return void in non-void functions
Diffstat (limited to 'core/pim') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/contacteditor.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp
index adea1a1..e74da87 100644
--- a/core/pim/addressbook/contacteditor.cpp
+++ b/core/pim/addressbook/contacteditor.cpp
@@ -52,9 +52,9 @@ void parseEmailTo( const QString &strDefaultEmail,
ContactEditor::ContactEditor( const Contact &entry,
const QValueList<int> *newOrderedValues,
QStringList *slNewOrdered,
- QWidget *parent = 0,
- const char *name = 0,
- WFlags fl = 0 )
+ QWidget *parent,
+ const char *name,
+ WFlags fl )
: QDialog( parent, name, TRUE, fl ),
orderedValues( newOrderedValues ),
slOrdered( slNewOrdered )
@@ -1125,6 +1125,7 @@ QString ContactEditor::parseName( const QString fullName, int type ) {
return strSuffix;
}
+ return QString::null;
}
void ContactEditor::cleanupFields() {