summaryrefslogtreecommitdiff
path: root/library/categoryselect.h
Unidiff
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
@@ -1,8 +1,9 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2001 Trolltech AS. All rights reserved. 2** Copyright (C) 2001 Trolltech AS. All rights reserved.
3** Copyright (C) 2003 zecke Introduce Sharp to the glory of default arguments
3** 4**
4** This file is part of Qtopia Environment. 5** This file is part of Qtopia Environment.
5** 6**
6** This file may be distributed and/or modified under the terms of the 7** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 8** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 9** Foundation and appearing in the file LICENSE.GPL included in the
@@ -66,13 +67,20 @@ class CategorySelectPrivate;
66class CategorySelect : public QHBox 67class CategorySelect : public QHBox
67{ 68{
68 Q_OBJECT 69 Q_OBJECT
69public: 70public:
70 // we need two constructors, the first gets around designer limitations 71 // we need two constructors, the first gets around designer limitations
71 72
72 CategorySelect( QWidget *parent = 0, const char *name = 0, int width = 0 ); 73 /*
74 * The Sharp libqpe does have two c'tor and no default argument for int width
75 * to stay BC cause the Kompany have the original headers and don't compile
76 * against the normal SDK we need to provide the two symbols as well
77 * -zecke
78 */
79 CategorySelect( QWidget* parent = 0, const char* name = 0 );
80 CategorySelect( QWidget *parent /*= 0 */, const char *name/* = 0*/ , int width /* = 0 if we break bc -zecke */ );
73 81
74 CategorySelect( const QArray<int> &vlCats, const QString &appName, 82 CategorySelect( const QArray<int> &vlCats, const QString &appName,
75 QWidget *parent = 0, const char *name = 0, 83 QWidget *parent = 0, const char *name = 0,
76 int width = 0); 84 int width = 0);
77 CategorySelect( const QArray<int> &vlCats, const QString &appName, 85 CategorySelect( const QArray<int> &vlCats, const QString &appName,
78 const QString &visibleName, QWidget *parent = 0, 86 const QString &visibleName, QWidget *parent = 0,