diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kdeui/kstdaction.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kstdaction.h')
-rw-r--r-- | kdeui/kstdaction.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kdeui/kstdaction.h b/kdeui/kstdaction.h index e5152798e..ba0845caf 100644 --- a/kdeui/kstdaction.h +++ b/kdeui/kstdaction.h @@ -46,7 +46,7 @@ class KToggleFullScreenAction; * * <b>Simple Example:</b>\n * - * In general, using standard actions should be a drop in tqreplacement + * In general, using standard actions should be a drop in replacement * for regular actions. For example, if you previously had: * * \code @@ -55,7 +55,7 @@ class KToggleFullScreenAction; * TQT_SLOT(fileNew()), actionCollection()); * \endcode * - * You could drop that and tqreplace it with: + * You could drop that and replace it with: * * \code * KAction *newAct = KStdAction::openNew(this, TQT_SLOT(fileNew()), @@ -74,7 +74,7 @@ class KToggleFullScreenAction; * it is still possible. * * Basically, the XML building code matches names in the XML code with - * the internal names of the actions. You can tqfind out the internal + * the internal names of the actions. You can find out the internal * names of each of the standard actions by using the stdName * action like so: KStdAction::stdName(KStdAction::Cut) would return * 'edit_cut'. The XML building code will match 'edit_cut' to the @@ -145,7 +145,7 @@ namespace KStdAction Spelling, // Settings Menu - ShowMenubar, ShowToolbar, ShowtqStatusbar, + ShowMenubar, ShowToolbar, ShowStatusbar, SaveOptions, KeyBindings, Preferences, ConfigureToolbars, @@ -328,27 +328,27 @@ namespace KStdAction KActionCollection* parent, const char *name = 0 ); /** - * Initiate a 'tqfind' request in the current document. + * Initiate a 'find' request in the current document. */ - KDEUI_EXPORT KAction *tqfind(const TQObject *recvr, const char *slot, + KDEUI_EXPORT KAction *find(const TQObject *recvr, const char *slot, KActionCollection* parent, const char *name = 0 ); /** - * Find the next instance of a stored 'tqfind'. + * Find the next instance of a stored 'find'. */ - KDEUI_EXPORT KAction *tqfindNext(const TQObject *recvr, const char *slot, + KDEUI_EXPORT KAction *findNext(const TQObject *recvr, const char *slot, KActionCollection* parent, const char *name = 0 ); /** - * Find a previous instance of a stored 'tqfind'. + * Find a previous instance of a stored 'find'. */ - KDEUI_EXPORT KAction *tqfindPrev(const TQObject *recvr, const char *slot, + KDEUI_EXPORT KAction *findPrev(const TQObject *recvr, const char *slot, KActionCollection* parent, const char *name = 0 ); /** - * Find and tqreplace matches. + * Find and replace matches. */ - KDEUI_EXPORT KAction *tqreplace(const TQObject *recvr, const char *slot, + KDEUI_EXPORT KAction *replace(const TQObject *recvr, const char *slot, KActionCollection* parent, const char *name = 0 ); /** @@ -512,7 +512,7 @@ namespace KStdAction /** * Show/Hide the statusbar. */ - KDEUI_EXPORT KToggleAction *showtqStatusbar(const TQObject *recvr, const char *slot, + KDEUI_EXPORT KToggleAction *showStatusbar(const TQObject *recvr, const char *slot, KActionCollection* parent, const char *name = 0 ); /** |