diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /interfaces/ktexteditor/templateinterface.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'interfaces/ktexteditor/templateinterface.h')
-rw-r--r-- | interfaces/ktexteditor/templateinterface.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/interfaces/ktexteditor/templateinterface.h b/interfaces/ktexteditor/templateinterface.h index c4cbca6b7..ec864a5e4 100644 --- a/interfaces/ktexteditor/templateinterface.h +++ b/interfaces/ktexteditor/templateinterface.h @@ -19,9 +19,9 @@ #ifndef __ktexteditor_templateinterface_h__ #define __ktexteditor_templateinterface_h__ -#include <qstring.h> -#include <qmap.h> -#include <qwidget.h> +#include <tqstring.h> +#include <tqmap.h> +#include <tqwidget.h> #include <kdelibs_export.h> @@ -52,12 +52,12 @@ class KTEXTEDITOR_EXPORT TemplateInterface //should be named AbstractTemplateInt * @return true if all macros was sucessfully expanded * @see insertTemplateText for a list of supported macros */ - static bool expandMacros( QMap<QString, QString> &initialValues, QWidget *parentWindow ); + static bool expandMacros( TQMap<TQString, TQString> &initialValues, TQWidget *parentWindow ); uint templateInterfaceNumber () const; protected: - void setTemplateInterfaceDCOPSuffix (const QCString &suffix); + void setTemplateInterfaceDCOPSuffix (const TQCString &suffix); public: @@ -103,7 +103,7 @@ class KTEXTEDITOR_EXPORT TemplateInterface //should be named AbstractTemplateInt * If the editor supports some kind of smart indentation, the inserted code * should be layouted by the indenter. */ - bool insertTemplateText ( uint line, uint column, const QString &templateString, const QMap<QString,QString> &initialValues, QWidget *parentWindow=0); + bool insertTemplateText ( uint line, uint column, const TQString &templateString, const TQMap<TQString,TQString> &initialValues, TQWidget *parentWindow=0); protected: /** @@ -113,7 +113,7 @@ protected: * insertTemplateText above. * @return true if any text was inserted. */ - virtual bool insertTemplateTextImplementation ( uint line, uint column, const QString &templateString, const QMap<QString,QString> &initialValues, QWidget *parentWindow=0 )=0; + virtual bool insertTemplateTextImplementation ( uint line, uint column, const TQString &templateString, const TQMap<TQString,TQString> &initialValues, TQWidget *parentWindow=0 )=0; /** * only for the interface itself - REAL PRIVATE |