diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 19:02:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 19:02:47 +0000 |
commit | e985f7e545f4739493965aad69bbecb136dc9346 (patch) | |
tree | 54afd409d8acd6202dd8ab611d24e78c28e4c0a0 /kommander/plugin/specialinformation.h | |
parent | f7670c198945adc3b95ad69a959fe5f8ae55b493 (diff) | |
download | tdewebdev-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 'kommander/plugin/specialinformation.h')
-rw-r--r-- | kommander/plugin/specialinformation.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kommander/plugin/specialinformation.h b/kommander/plugin/specialinformation.h index fa898620..1ff00a6c 100644 --- a/kommander/plugin/specialinformation.h +++ b/kommander/plugin/specialinformation.h @@ -36,9 +36,9 @@ public: /* Flags describing which parser supports the function */ enum ParserType {MacroParser = 1, InternalParser = 2, AllParsers = 3}; SpecialFunction(const TQString& function, const TQString& description - = TQString::null, int minArgs = -1, int maxArgs = -1); + = TQString(), int minArgs = -1, int maxArgs = -1); SpecialFunction(ParserType p, const TQString& function, const TQString& description - = TQString::null, int minArgs = -1, int maxArgs = -1); + = TQString(), int minArgs = -1, int maxArgs = -1); SpecialFunction() {m_minArgs = m_maxArgs = 0;} /* minimum number of arguments */ int minArg() const {return m_minArgs;} @@ -90,13 +90,13 @@ public: static TQString description(int gname, int fname); static TQString prototype(int gname, int fname, uint prototypeFlags = 0); /* Insert function supported by all parsers */ - static bool insert(int id, const TQString& function, const TQString description = TQString::null, + static bool insert(int id, const TQString& function, const TQString description = TQString(), int minArgs = -1, int maxArgs = -1, SpecialFunction::ParserType = SpecialFunction::AllParsers); /* Insert function supported by (old) macro parser */ - static bool insertMacro(int id, const TQString& function, const TQString description = TQString::null, + static bool insertMacro(int id, const TQString& function, const TQString description = TQString(), int minArgs = -1, int maxArgs = -1); /* Insert function supported by (new) internal parser */ - static bool insertInternal(int id, const TQString& function, const TQString description = TQString::null, + static bool insertInternal(int id, const TQString& function, const TQString description = TQString(), int minArgs = -1, int maxArgs = -1); static bool insertAlias(int id, const TQString& alias); static void insertGroup(int id, const TQString& name, const TQString& parserName); |