diff options
Diffstat (limited to 'kdevdesigner/plugins/languageinterfaceimpl.h')
-rw-r--r-- | kdevdesigner/plugins/languageinterfaceimpl.h | 22 |
1 files changed, 11 insertions, 11 deletions
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; }; |