From a46e33728580cacf68994d5b5d3780a5bcb58e8b Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 13 Aug 2011 21:51:16 +0000 Subject: Fix kalyptus by altering kdelibs git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1246968 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kparts/mainwindow.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'kparts') diff --git a/kparts/mainwindow.h b/kparts/mainwindow.h index 08262c19a..f1c386a6a 100644 --- a/kparts/mainwindow.h +++ b/kparts/mainwindow.h @@ -51,16 +51,28 @@ class KPARTS_EXPORT MainWindow : public KMainWindow, virtual public PartBase /** * Constructor, same signature as KMainWindow. */ +#ifdef qdoc + MainWindow( TQWidget* parent, const char *name = 0L, WFlags f = WType_TopLevel | WDestructiveClose ); +#else MainWindow( TQWidget* parent, const char *name = 0L, WFlags f = (WFlags)(WType_TopLevel | WDestructiveClose) ); +#endif /** * Compatibility Constructor */ +#ifdef qdoc + MainWindow( const char *name = 0L, WFlags f = WDestructiveClose ); +#else MainWindow( const char *name = 0L, WFlags f = (WFlags)WDestructiveClose ); +#endif /** * Constructor with creation flags, see KMainWindow. * @since 3.2 */ +#ifdef qdoc + MainWindow( int cflags, TQWidget* parent, const char *name = 0L, WFlags f = WType_TopLevel | WDestructiveClose ); +#else MainWindow( int cflags, TQWidget* parent, const char *name = 0L, WFlags f = (WFlags)(WType_TopLevel | WDestructiveClose) ); +#endif /** * Destructor. */ @@ -105,3 +117,4 @@ private: } #endif + -- cgit v1.2.1