summaryrefslogtreecommitdiffstats
path: root/kdeui/kactioncollection.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/kactioncollection.h')
-rw-r--r--kdeui/kactioncollection.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdeui/kactioncollection.h b/kdeui/kactioncollection.h
index 836a58c14..7ce10052c 100644
--- a/kdeui/kactioncollection.h
+++ b/kdeui/kactioncollection.h
@@ -69,13 +69,13 @@ typedef TQValueList<KAction *> KActionPtrList;
*
* \code
* actionCollection()->setHighlightingEnabled(true);
- * connect(actionCollection(), TQT_SIGNAL( actiontqStatusText( const TQString & ) ),
+ * connect(actionCollection(), TQT_SIGNAL( actionStatusText( const TQString & ) ),
* statusBar(), TQT_SLOT( message( const TQString & ) ) );
- * connect(actionCollection(), TQT_SIGNAL( cleartqStatusText() ),
+ * connect(actionCollection(), TQT_SIGNAL( clearStatusText() ),
* statusBar(), TQT_SLOT( clear() ) );
* \endcode
*/
-class KDEUI_EXPORT KActionCollection : public TQObject
+class KDEUI_EXPORT KActionCollection : public QObject
{
friend class KAction;
friend class KXMLGUIClient;
@@ -298,13 +298,13 @@ signals:
*
* @see setHighlightingEnabled()
*/
- void actiontqStatusText( const TQString &text );
+ void actionStatusText( const TQString &text );
/** Emitted when an action loses highlighting.
* This is only emitted if you have setHighlightingEnabled()
*
* @see setHighlightingEnabled()
*/
- void cleartqStatusText();
+ void clearStatusText();
private:
/**
@@ -331,7 +331,7 @@ private slots:
void slotDestroyed();
private:
- KAction *tqfindAction( TQWidget *container, int id );
+ KAction *findAction( TQWidget *container, int id );
#ifndef KDE_NO_COMPAT
public: