author | simon <simon> | 2002-03-25 19:19:51 (UTC) |
---|---|---|
committer | simon <simon> | 2002-03-25 19:19:51 (UTC) |
commit | 956522a9355051294e12e85e564d8ae1f0b928a3 (patch) (unidiff) | |
tree | 1926e6b270be501ed9fa4d5b89d839666c2c82ba | |
parent | 7c0676ba302dc1cfa4348423544ea2d66417c1bd (diff) | |
download | opie-956522a9355051294e12e85e564d8ae1f0b928a3.zip opie-956522a9355051294e12e85e564d8ae1f0b928a3.tar.gz opie-956522a9355051294e12e85e564d8ae1f0b928a3.tar.bz2 |
- no default arguments in method implementations
-rw-r--r-- | library/categorymenu.cpp | 2 | ||||
-rw-r--r-- | library/imageedit.cpp | 2 | ||||
-rw-r--r-- | library/menubutton.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/library/categorymenu.cpp b/library/categorymenu.cpp index 52a127c..e733107 100644 --- a/library/categorymenu.cpp +++ b/library/categorymenu.cpp | |||
@@ -27,3 +27,3 @@ | |||
27 | CategoryMenu::CategoryMenu( const QString &n, bool ig = TRUE, | 27 | CategoryMenu::CategoryMenu( const QString &n, bool ig = TRUE, |
28 | QWidget *parent = 0, const char *name = 0 ) : | 28 | QWidget *parent, const char *name ) : |
29 | QPopupMenu(parent, name), | 29 | QPopupMenu(parent, name), |
diff --git a/library/imageedit.cpp b/library/imageedit.cpp index 7f98ebb..0c22448 100644 --- a/library/imageedit.cpp +++ b/library/imageedit.cpp | |||
@@ -22,3 +22,3 @@ | |||
22 | 22 | ||
23 | ImageEdit::ImageEdit( QWidget *parent = 0, const char *name = 0 ) | 23 | ImageEdit::ImageEdit( QWidget *parent, const char *name ) |
24 | : QScrollView( parent, name, WNorthWestGravity | WResizeNoErase ), buffer() | 24 | : QScrollView( parent, name, WNorthWestGravity | WResizeNoErase ), buffer() |
diff --git a/library/menubutton.cpp b/library/menubutton.cpp index c34383a..6b1fa2b 100644 --- a/library/menubutton.cpp +++ b/library/menubutton.cpp | |||
@@ -103,3 +103,3 @@ void MenuButton::insertItems( const QStringList& items ) | |||
103 | */ | 103 | */ |
104 | void MenuButton::insertItem( const QIconSet& icon, const QString& text=QString::null ) | 104 | void MenuButton::insertItem( const QIconSet& icon, const QString& text ) |
105 | { | 105 | { |