summaryrefslogtreecommitdiffstats
path: root/quanta/src/viewmanager.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-16 19:02:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-16 19:02:47 +0000
commite985f7e545f4739493965aad69bbecb136dc9346 (patch)
tree54afd409d8acd6202dd8ab611d24e78c28e4c0a0 /quanta/src/viewmanager.h
parentf7670c198945adc3b95ad69a959fe5f8ae55b493 (diff)
downloadtdewebdev-e985f7e545f4739493965aad69bbecb136dc9346.tar.gz
tdewebdev-e985f7e545f4739493965aad69bbecb136dc9346.zip
TQt4 port kdewebdev
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1237029 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/src/viewmanager.h')
-rw-r--r--quanta/src/viewmanager.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/quanta/src/viewmanager.h b/quanta/src/viewmanager.h
index 05278901..9b600d00 100644
--- a/quanta/src/viewmanager.h
+++ b/quanta/src/viewmanager.h
@@ -29,22 +29,23 @@ class KMdiChildView;
/** This singleton class takes care of creating new views for documents, help, plugins, preview and so.
* As the name says, it also manages the views. */
-class ViewManager : public QObject
+class ViewManager : public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
/** Returns a reference to the viewmanager object */
- static ViewManager* const ref(TQObject *parent = 0L, const char *name = 0L)
+ static ViewManager* const ref(TQObject *tqparent = 0L, const char *name = 0L)
{
static ViewManager *m_ref;
- if (!m_ref) m_ref = new ViewManager(parent, name);
+ if (!m_ref) m_ref = new ViewManager(tqparent, name);
return m_ref;
}
/** The destructor. */
virtual ~ViewManager(){};
/** Creates a QuantaView object */
- QuantaView *createView(const TQString &caption = TQString::null);
+ QuantaView *createView(const TQString &caption = TQString());
/** Removes a QuantaView object. Returns false on failure (eg. the view was not saved and it refused
the delete itself.) If force is true, the view is removed without asking for save.
*/
@@ -123,7 +124,7 @@ private slots:
private:
/** Private constructor for the singleton object. */
- ViewManager(TQObject * parent = 0, const char * name = 0);
+ ViewManager(TQObject * tqparent = 0, const char * name = 0);
/** Returns true if there isn't any opened view holding an editor */
bool allEditorsClosed();