summaryrefslogtreecommitdiff
path: root/library/categoryselect.h
Side-by-side diff
Diffstat (limited to 'library/categoryselect.h') (more/less context) (show whitespace changes)
-rw-r--r--library/categoryselect.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/library/categoryselect.h b/library/categoryselect.h
index 7a8e491..8ec1941 100644
--- a/library/categoryselect.h
+++ b/library/categoryselect.h
@@ -2,2 +2,3 @@
** Copyright (C) 2001 Trolltech AS. All rights reserved.
+** Copyright (C) 2003 zecke Introduce Sharp to the glory of default arguments
**
@@ -71,3 +72,10 @@ public:
- CategorySelect( QWidget *parent = 0, const char *name = 0, int width = 0 );
+ /*
+ * The Sharp libqpe does have two c'tor and no default argument for int width
+ * to stay BC cause the Kompany have the original headers and don't compile
+ * against the normal SDK we need to provide the two symbols as well
+ * -zecke
+ */
+ CategorySelect( QWidget* parent = 0, const char* name = 0 );
+ CategorySelect( QWidget *parent /*= 0 */, const char *name/* = 0*/ , int width /* = 0 if we break bc -zecke */ );