summaryrefslogtreecommitdiffstats
path: root/kdeui
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-13 21:51:16 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-13 21:51:16 +0000
commita46e33728580cacf68994d5b5d3780a5bcb58e8b (patch)
tree116b23694492df3377f410e8492ed31accaed2e3 /kdeui
parentb56a10ae43f369fd79100bd82e99cab169ed6220 (diff)
downloadtdelibs-a46e33728580cacf68994d5b5d3780a5bcb58e8b.tar.gz
tdelibs-a46e33728580cacf68994d5b5d3780a5bcb58e8b.zip
Fix kalyptus by altering kdelibs
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1246968 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui')
-rw-r--r--kdeui/kdockwidget.h5
-rw-r--r--kdeui/keditlistbox.h74
-rw-r--r--kdeui/kmainwindow.h9
-rw-r--r--kdeui/kurllabel.h4
4 files changed, 57 insertions, 35 deletions
diff --git a/kdeui/kdockwidget.h b/kdeui/kdockwidget.h
index d3b030697..019cd9e55 100644
--- a/kdeui/kdockwidget.h
+++ b/kdeui/kdockwidget.h
@@ -1332,7 +1332,11 @@ public:
* @param name internal object name
* @param f Qt::WidgetFlags widget flags
*/
+#ifdef qdoc
+ KDockMainWindow( TQWidget* parent = 0L, const char *name = 0L, WFlags f = WType_TopLevel | WDestructiveClose );
+#else
KDockMainWindow( TQWidget* parent = 0L, const char *name = 0L, WFlags f = (WFlags)(WType_TopLevel | WDestructiveClose) );
+#endif
/**
* Destructs a dockmainwindow.
@@ -1546,3 +1550,4 @@ private:
#endif
+
diff --git a/kdeui/keditlistbox.h b/kdeui/keditlistbox.h
index 3a7fc1980..bd8b19a64 100644
--- a/kdeui/keditlistbox.h
+++ b/kdeui/keditlistbox.h
@@ -51,41 +51,7 @@ class KDEUI_EXPORT KEditListBox : public TQGroupBox
TQ_PROPERTY( TQStringList items READ items WRITE setItems )
public:
- /**
- * Custom editor class
- *
- * @since 3.1
- **/
- // ### KDE4: add virtual destructor
- class CustomEditor
- {
- public:
- KDEUI_EXPORT CustomEditor()
- : m_representationWidget( 0L ),
- m_lineEdit( 0L ) {}
- KDEUI_EXPORT CustomEditor( TQWidget *repWidget, KLineEdit *edit )
- : m_representationWidget( repWidget ),
- m_lineEdit( edit ) {}
- KDEUI_EXPORT CustomEditor( KComboBox *combo );
-
- KDEUI_EXPORT void setRepresentationWidget( TQWidget *repWidget ) {
- m_representationWidget = repWidget;
- }
- KDEUI_EXPORT void setLineEdit( KLineEdit *edit ) {
- m_lineEdit = edit;
- }
-
- KDEUI_EXPORT virtual TQWidget *representationWidget() const {
- return m_representationWidget;
- }
- KDEUI_EXPORT virtual KLineEdit *lineEdit() const {
- return m_lineEdit;
- }
-
- protected:
- TQWidget *m_representationWidget;
- KLineEdit *m_lineEdit;
- };
+ class CustomEditor;
public:
@@ -270,6 +236,44 @@ public:
private:
//our lovely private d-pointer
KEditListBoxPrivate* const d;
+
+ /**
+ * Custom editor class
+ *
+ * @since 3.1
+ **/
+ // ### KDE4: add virtual destructor
+ public:
+ class CustomEditor
+ {
+ public:
+ KDEUI_EXPORT CustomEditor()
+ : m_representationWidget( 0L ),
+ m_lineEdit( 0L ) {}
+ KDEUI_EXPORT CustomEditor( TQWidget *repWidget, KLineEdit *edit )
+ : m_representationWidget( repWidget ),
+ m_lineEdit( edit ) {}
+ KDEUI_EXPORT CustomEditor( KComboBox *combo );
+
+ KDEUI_EXPORT void setRepresentationWidget( TQWidget *repWidget ) {
+ m_representationWidget = repWidget;
+ }
+ KDEUI_EXPORT void setLineEdit( KLineEdit *edit ) {
+ m_lineEdit = edit;
+ }
+
+ KDEUI_EXPORT virtual TQWidget *representationWidget() const {
+ return m_representationWidget;
+ }
+ KDEUI_EXPORT virtual KLineEdit *lineEdit() const {
+ return m_lineEdit;
+ }
+
+ protected:
+ TQWidget *m_representationWidget;
+ KLineEdit *m_lineEdit;
+ };
};
#endif
+
diff --git a/kdeui/kmainwindow.h b/kdeui/kmainwindow.h
index 43f9845bf..035cdb772 100644
--- a/kdeui/kmainwindow.h
+++ b/kdeui/kmainwindow.h
@@ -133,7 +133,11 @@ public:
* KMainWindow *kmw = new KMainWindow (...);
* \endcode
**/
+#ifdef qdoc
+ KMainWindow( TQWidget* parent = 0, const char *name = 0, WFlags f = WType_TopLevel | WDestructiveClose );
+#else
KMainWindow( TQWidget* parent = 0, const char *name = 0, WFlags f = (WFlags)(WType_TopLevel | WDestructiveClose) );
+#endif
/**
* Flags that can be passed in an argument to the constructor to
@@ -155,7 +159,11 @@ public:
*
* @since 3.2
*/
+#ifdef qdoc
+ KMainWindow( int cflags, TQWidget* parent = 0, const char *name = 0, WFlags f = WType_TopLevel | WDestructiveClose );
+#else
KMainWindow( int cflags, TQWidget* parent = 0, const char *name = 0, WFlags f = (WFlags)(WType_TopLevel | WDestructiveClose) );
+#endif
/**
* \brief Destructor.
@@ -1065,3 +1073,4 @@ inline void kRestoreMainWindows() {
}
#endif
+
diff --git a/kdeui/kurllabel.h b/kdeui/kurllabel.h
index 30ef78a39..5563f77ba 100644
--- a/kdeui/kurllabel.h
+++ b/kdeui/kurllabel.h
@@ -161,7 +161,10 @@ public:
/**
* Reimplemented for internal reasons, the API is not affected.
*/
+#ifdef qdoc
+#else
virtual void setFocusPolicy ( TQ_FocusPolicy policy );
+#endif
/**
* Reimplemented for internal reasons, the API is not affected.
@@ -405,3 +408,4 @@ private:
};
#endif // KURLLABEL_H
+