summaryrefslogtreecommitdiffstats
path: root/kdeui/kpanelapplet.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/kpanelapplet.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-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 'kdeui/kpanelapplet.h')
-rw-r--r--kdeui/kpanelapplet.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdeui/kpanelapplet.h b/kdeui/kpanelapplet.h
index a43e598f2..54fdef89b 100644
--- a/kdeui/kpanelapplet.h
+++ b/kdeui/kpanelapplet.h
@@ -24,7 +24,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef __kpanelapplet_h__
#define __kpanelapplet_h__
-#include <qframe.h>
+#include <tqframe.h>
#include <kconfig.h>
class KConfig;
@@ -78,7 +78,7 @@ class QPopupMenu;
*
* extern "C"
* {
- * KPanelApplet* init(QWidget *parent, const QString& configFile)
+ * KPanelApplet* init(TQWidget *parent, const TQString& configFile)
* {
* KGlobal::locale()->insertCatalogue("exampleapplet");
* return new ExampleApplet(configFile, KPanelApplet::Normal,
@@ -124,8 +124,8 @@ public:
* @param name A Qt object name for your applet.
* @param f Window control flags
**/
- KPanelApplet(const QString& configFile, Type t = Normal,
- int actions = 0, QWidget *parent = 0, const char *name = 0,
+ KPanelApplet(const TQString& configFile, Type t = Normal,
+ int actions = 0, TQWidget *parent = 0, const char *name = 0,
WFlags f = 0);
/**
@@ -213,9 +213,9 @@ public:
/**
* @return the applet's custom menu, usually the same as the context menu, or 0 if none
- * see setCustomMenu(QPopupMenu*)
+ * see setCustomMenu(TQPopupMenu*)
*/
- const QPopupMenu* customMenu() const;
+ const TQPopupMenu* customMenu() const;
/**
* @internal
@@ -335,7 +335,7 @@ protected:
* If the menu is deleted during the life of the applet, be sure to call this method again
* with the new menu (or 0) to avoid crashes
*/
- void setCustomMenu(const QPopupMenu*);
+ void setCustomMenu(const TQPopupMenu*);
/**
* Register widgets that can receive keyboard focus with this this method
@@ -344,7 +344,7 @@ protected:
* @param watch whether to start watching the widget, or to stop doing so
* @since 3.4
*/
- void watchForFocus(QWidget* widget, bool watch = true);
+ void watchForFocus(TQWidget* widget, bool watch = true);
/**
* Call this whenever focus is needed or not needed. You do not have to call this method
@@ -378,7 +378,7 @@ protected:
// FIXME: Remove for KDE 4
virtual KDE_DEPRECATED void popupDirectionChange( Direction /*direction*/ ) {}
- bool eventFilter(QObject *, QEvent *);
+ bool eventFilter(TQObject *, TQEvent *);
private:
Type _type;