diff options
Diffstat (limited to 'languages/lib/designer_integration/qtdesignerintegration.h')
-rw-r--r-- | languages/lib/designer_integration/qtdesignerintegration.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/languages/lib/designer_integration/qtdesignerintegration.h b/languages/lib/designer_integration/qtdesignerintegration.h index a31310eb..9a750fbd 100644 --- a/languages/lib/designer_integration/qtdesignerintegration.h +++ b/languages/lib/designer_integration/qtdesignerintegration.h @@ -17,8 +17,8 @@ * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef QTDESIGNERINTEGRATION_H -#define QTDESIGNERINTEGRATION_H +#ifndef TQTDESIGNERINTEGRATION_H +#define TQTDESIGNERINTEGRATION_H #include <tqmap.h> @@ -29,19 +29,20 @@ class KDevLanguageSupport; class ImplementationWidget; /** -Qt Designer integration base class. +TQt Designer integration base class. Contains language-independent implementation part of a @ref KDevDesignerIntegration interface. Ready to use in KDevelop language support plugins. Subclasses of this class should reimplement only pure virtual functions in the common case. */ -class QtDesignerIntegration : public KDevDesignerIntegration +class TQtDesignerIntegration : public KDevDesignerIntegration { Q_OBJECT + TQ_OBJECT public: - QtDesignerIntegration(KDevLanguageSupport *part, ImplementationWidget *impl, + TQtDesignerIntegration(KDevLanguageSupport *part, ImplementationWidget *impl, bool classHasDefinitions, const char* name = 0); - virtual ~QtDesignerIntegration(); + virtual ~TQtDesignerIntegration(); public slots: virtual void addFunction(const TQString& formName, KInterfaceDesigner::Function function); @@ -65,7 +66,7 @@ protected: separate files for interface and implementation parts of a class. For example, C++ language support plugin will do: @code - name.replace(".h", ".cpp"); + name.tqreplace(".h", ".cpp"); @endcode*/ virtual void processImplementationName(TQString &name); |