author | simon <simon> | 2002-03-25 20:18:22 (UTC) |
---|---|---|
committer | simon <simon> | 2002-03-25 20:18:22 (UTC) |
commit | fb6b1e63a784a6724e05f16269126ea49a7ad54b (patch) (side-by-side diff) | |
tree | 371aa324f17cd3615ff8ece5c85abffd902b5c31 | |
parent | b001d834cd1259ea17fd1faf82111a1efdf607db (diff) | |
download | opie-fb6b1e63a784a6724e05f16269126ea49a7ad54b.zip opie-fb6b1e63a784a6724e05f16269126ea49a7ad54b.tar.gz opie-fb6b1e63a784a6724e05f16269126ea49a7ad54b.tar.bz2 |
- no default argument in method implementations
-rw-r--r-- | core/pim/addressbook/abeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/addressbook/abeditor.cpp b/core/pim/addressbook/abeditor.cpp index 6354db9..94baa71 100644 --- a/core/pim/addressbook/abeditor.cpp +++ b/core/pim/addressbook/abeditor.cpp @@ -54,5 +54,5 @@ void parseEmailTo( const QString &strDefaultEmail, AbEditor::AbEditor( const Contact &entry, const QValueList<int> *newOrdered, 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( newOrdered ), |