blob: 632b9541f01e01e27af317e84ae3bc5b6c44f86d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
===================================================================
RCS file: /home2/webcvs/mirror/kdebindings/smoke/qt/Attic/x_QHBox.cpp,v
retrieving revision 1.17.2.2
retrieving revision 1.17.2.3
diff -u -p -r1.17.2.2 -r1.17.2.3
--- kdebindings/smoke/qt/Attic/x_QHBox.cpp 2003/01/16 10:03:52 1.17.2.2
+++ kdebindings/smoke/qt/Attic/x_QHBox.cpp 2003/09/22 18:07:12 1.17.2.3
@@ -143,14 +143,22 @@ public:
x_QHBox* xret = new x_QHBox((bool)x[1].s_bool,(QWidget*)x[2].s_class);
x[0].s_class = (void*)xret;
}
+#if QT_VERSION < 0x030200
x_QHBox(bool x1, QWidget* x2) : QHBox(x1, x2) {
+#else
+ x_QHBox(bool x1, QWidget* x2) : QHBox(x1, x2, 0) {
+#endif
}
static void x_22(Smoke::Stack x) {
// QHBox(bool)
x_QHBox* xret = new x_QHBox((bool)x[1].s_bool);
x[0].s_class = (void*)xret;
}
+#if QT_VERSION < 0x030200
x_QHBox(bool x1) : QHBox(x1) {
+#else
+ x_QHBox(bool x1) : QHBox(x1, 0, 0) {
+#endif
}
void x_23(Smoke::Stack x) {
// frameChanged()
|