author | simon <simon> | 2002-03-25 20:18:22 (UTC) |
---|---|---|
committer | simon <simon> | 2002-03-25 20:18:22 (UTC) |
commit | fb6b1e63a784a6724e05f16269126ea49a7ad54b (patch) (unidiff) | |
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 | |||
@@ -52,9 +52,9 @@ void parseEmailTo( const QString &strDefaultEmail, | |||
52 | 52 | ||
53 | 53 | ||
54 | AbEditor::AbEditor( const Contact &entry, const QValueList<int> *newOrdered, | 54 | AbEditor::AbEditor( const Contact &entry, const QValueList<int> *newOrdered, |
55 | QStringList *slNewOrdered, | 55 | QStringList *slNewOrdered, |
56 | QWidget *parent = 0, const char *name = 0, WFlags fl = 0 ) | 56 | QWidget *parent, const char *name, WFlags fl ) |
57 | : QDialog( parent, name, TRUE, fl ), | 57 | : QDialog( parent, name, TRUE, fl ), |
58 | orderedValues( newOrdered ), | 58 | orderedValues( newOrdered ), |
59 | slOrdered( slNewOrdered ) | 59 | slOrdered( slNewOrdered ) |
60 | { | 60 | { |