summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/plugins
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-14 16:45:05 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-14 16:45:05 +0000
commit48d4a26399959121f33d2bc3bfe51c7827b654fc (patch)
tree5ae5e6e00d3ba330b7b8be9bc097154b6bc739e8 /kdevdesigner/plugins
parent7e701ace6592d09e1f2c0cf28c7d6d872d78f4f5 (diff)
downloadtdevelop-48d4a26399959121f33d2bc3bfe51c7827b654fc.tar.gz
tdevelop-48d4a26399959121f33d2bc3bfe51c7827b654fc.zip
TQt4 port kdevelop
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1236710 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdevdesigner/plugins')
-rw-r--r--kdevdesigner/plugins/languageinterfaceimpl.cpp50
-rw-r--r--kdevdesigner/plugins/languageinterfaceimpl.h22
2 files changed, 36 insertions, 36 deletions
diff --git a/kdevdesigner/plugins/languageinterfaceimpl.cpp b/kdevdesigner/plugins/languageinterfaceimpl.cpp
index 53ce2ba8..ac4f8326 100644
--- a/kdevdesigner/plugins/languageinterfaceimpl.cpp
+++ b/kdevdesigner/plugins/languageinterfaceimpl.cpp
@@ -2,15 +2,15 @@
**
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
-** This file is part of Qt Designer.
+** This file is part of TQt Designer.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
-** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
-** licenses may use this file in accordance with the Qt Commercial License
+** Licensees holding valid TQt Enterprise Edition or TQt Professional Edition
+** licenses may use this file in accordance with the TQt Commercial License
** Agreement provided with the Software.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
@@ -18,7 +18,7 @@
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
-** information about Qt Commercial License Agreements.
+** information about TQt Commercial License Agreements.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
@@ -32,20 +32,20 @@
//#include "yyreg.h"
#include <tqmetaobject.h>
-LanguageInterfaceImpl::LanguageInterfaceImpl( QUnknownInterface *outer )
- : parent( outer ), ref( 0 )
+LanguageInterfaceImpl::LanguageInterfaceImpl( TQUnknownInterface *outer )
+ : tqparent( outer ), ref( 0 )
{
}
ulong LanguageInterfaceImpl::addRef()
{
- return parent ? parent->addRef() : ref++;
+ return tqparent ? tqparent->addRef() : ref++;
}
ulong LanguageInterfaceImpl::release()
{
- if ( parent )
- return parent->release();
+ if ( tqparent )
+ return tqparent->release();
if ( !--ref ) {
delete this;
return 0;
@@ -53,25 +53,25 @@ ulong LanguageInterfaceImpl::release()
return ref;
}
-QRESULT LanguageInterfaceImpl::queryInterface( const QUuid &uuid, QUnknownInterface** iface )
+TQRESULT LanguageInterfaceImpl::queryInterface( const TQUuid &uuid, TQUnknownInterface** iface )
{
- if ( parent )
- return parent->queryInterface( uuid, iface );
+ if ( tqparent )
+ return tqparent->queryInterface( uuid, iface );
*iface = 0;
- if ( uuid == IID_QUnknown )
- *iface = (QUnknownInterface*)this;
+ if ( uuid == IID_TQUnknown )
+ *iface = (TQUnknownInterface*)this;
else if ( uuid == IID_Language )
*iface = (LanguageInterface*)this;
else
- return QE_NOINTERFACE;
+ return TQE_NOINTERFACE;
(*iface)->addRef();
- return QS_OK;
+ return TQS_OK;
}
-class NormalizeObject : public QObject
+class NormalizeObject : public TQObject
{
public:
NormalizeObject() : TQObject() {}
@@ -86,9 +86,9 @@ void LanguageInterfaceImpl::functions( const TQString &code, TQValueList<Functio
Function func;
func.name = (*it).prototype();
func.name.remove( 0, (*it).returnType().length() );
- if ( func.name.find( "::" ) == -1 )
+ if ( func.name.tqfind( "::" ) == -1 )
continue;
- func.name.remove( (uint)0, func.name.find( "::" ) + 2 );
+ func.name.remove( (uint)0, func.name.tqfind( "::" ) + 2 );
func.body = (*it).body();
func.returnType = (*it).returnType();
func.start = (*it).functionStartLineNum();
@@ -111,10 +111,10 @@ TQStringList LanguageInterfaceImpl::definitions() const
return lst;
}
-TQStringList LanguageInterfaceImpl::definitionEntries( const TQString &definition, QUnknownInterface *designerIface ) const
+TQStringList LanguageInterfaceImpl::definitionEntries( const TQString &definition, TQUnknownInterface *designerIface ) const
{
DesignerInterface *iface = 0;
- designerIface->queryInterface( IID_Designer, (QUnknownInterface**) &iface );
+ designerIface->queryInterface( IID_Designer, (TQUnknownInterface**) &iface );
if ( !iface )
return TQStringList();
DesignerFormWindow *fw = iface->currentForm();
@@ -134,10 +134,10 @@ TQStringList LanguageInterfaceImpl::definitionEntries( const TQString &definitio
return lst;
}
-void LanguageInterfaceImpl::setDefinitionEntries( const TQString &definition, const TQStringList &entries, QUnknownInterface *designerIface )
+void LanguageInterfaceImpl::setDefinitionEntries( const TQString &definition, const TQStringList &entries, TQUnknownInterface *designerIface )
{
DesignerInterface *iface = 0;
- designerIface->queryInterface( IID_Designer, (QUnknownInterface**) &iface );
+ designerIface->queryInterface( IID_Designer, (TQUnknownInterface**) &iface );
if ( !iface )
return;
DesignerFormWindow *fw = iface->currentForm();
@@ -195,7 +195,7 @@ void LanguageInterfaceImpl::sourceProjectKeys( TQStringList &keys ) const
keys << "HEADERS" << "SOURCES";
}
- class CheckObject : public QObject
+ class CheckObject : public TQObject
{
public:
CheckObject() {}
@@ -231,7 +231,7 @@ void LanguageInterfaceImpl::preferedExtensions( TQMap<TQString, TQString> &exten
TQStrList LanguageInterfaceImpl::signalNames( TQObject *obj ) const
{
TQStrList sigs;
- sigs = obj->metaObject()->signalNames( TRUE );
+ sigs = obj->tqmetaObject()->signalNames( TRUE );
sigs.remove( "destroyed()" );
return sigs;
}
diff --git a/kdevdesigner/plugins/languageinterfaceimpl.h b/kdevdesigner/plugins/languageinterfaceimpl.h
index 2dd73465..56c675ae 100644
--- a/kdevdesigner/plugins/languageinterfaceimpl.h
+++ b/kdevdesigner/plugins/languageinterfaceimpl.h
@@ -2,15 +2,15 @@
**
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
-** This file is part of Qt Designer.
+** This file is part of TQt Designer.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
-** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
-** licenses may use this file in accordance with the Qt Commercial License
+** Licensees holding valid TQt Enterprise Edition or TQt Professional Edition
+** licenses may use this file in accordance with the TQt Commercial License
** Agreement provided with the Software.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
@@ -18,7 +18,7 @@
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
-** information about Qt Commercial License Agreements.
+** information about TQt Commercial License Agreements.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
@@ -33,21 +33,21 @@
class LanguageInterfaceImpl : public LanguageInterface
{
public:
- LanguageInterfaceImpl( QUnknownInterface *outer = 0 );
+ LanguageInterfaceImpl( TQUnknownInterface *outer = 0 );
ulong addRef();
ulong release();
- QRESULT queryInterface( const QUuid&, QUnknownInterface** );
+ TQRESULT queryInterface( const TQUuid&, TQUnknownInterface** );
void functions( const TQString &code, TQValueList<Function> *funcs ) const;
void connections( const TQString &, TQValueList<Connection> * ) const {};
TQString createFunctionStart( const TQString &className, const TQString &func,
const TQString &returnType, const TQString &access );
TQStringList definitions() const;
- TQStringList definitionEntries( const TQString &definition, QUnknownInterface *designerIface ) const;
- void setDefinitionEntries( const TQString &definition, const TQStringList &entries, QUnknownInterface *designerIface );
- TQString createArguments( const TQString & ) { return TQString::null; }
+ TQStringList definitionEntries( const TQString &definition, TQUnknownInterface *designerIface ) const;
+ void setDefinitionEntries( const TQString &definition, const TQStringList &entries, TQUnknownInterface *designerIface );
+ TQString createArguments( const TQString & ) { return TQString(); }
TQString createEmptyFunction();
bool supports( Support s ) const;
TQStringList fileFilterList() const;
@@ -63,7 +63,7 @@ public:
TQString formCodeExtension() const { return ".h"; }
bool canConnect( const TQString &signal, const TQString &slot );
void compressProject( const TQString &, const TQString &, bool ) {}
- TQString uncompressProject( const TQString &, const TQString & ) { return TQString::null; }
+ TQString uncompressProject( const TQString &, const TQString & ) { return TQString(); }
TQString aboutText() const { return ""; }
void addConnection( const TQString &, const TQString &,
@@ -75,7 +75,7 @@ public:
TQStrList signalNames( TQObject *obj ) const;
private:
- QUnknownInterface *parent;
+ TQUnknownInterface *tqparent;
ulong ref;
};