summaryrefslogtreecommitdiffstats
path: root/kdeui/kpanelextension.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/kpanelextension.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/kpanelextension.h')
-rw-r--r--kdeui/kpanelextension.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdeui/kpanelextension.h b/kdeui/kpanelextension.h
index 59a9e0aef..2e33f4408 100644
--- a/kdeui/kpanelextension.h
+++ b/kdeui/kpanelextension.h
@@ -24,7 +24,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef __kpanelextension_h__
#define __kpanelextension_h__
-#include <qframe.h>
+#include <tqframe.h>
#include <kdelibs_export.h>
class QPopupMenu;
@@ -78,7 +78,7 @@ class KPanelExtensionPrivate;
*
* extern "C"
* {
- * KPanelExtension* init(QWidget *parent, const QString& configFile)
+ * KPanelExtension* init(TQWidget *parent, const TQString& configFile)
* {
* KGlobal::locale()->insertCatalogue("exampleextension");
* return new ExampleExtension(configFile, KPanelExtension::Normal,
@@ -119,8 +119,8 @@ public:
* @param parent The pointer to the parent widget handed over in the factory function.
* @param name A Qt object name for your extension.
**/
- KPanelExtension(const QString& configFile, Type t = Normal,
- int actions = 0, QWidget *parent = 0, const char *name = 0);
+ KPanelExtension(const TQString& configFile, Type t = Normal,
+ int actions = 0, TQWidget *parent = 0, const char *name = 0);
/**
* Destructor.
@@ -136,7 +136,7 @@ public:
* location in the Window Manager Dock. Please note that the size can not be larger than the
* maxsize given by the handler.
**/
- virtual QSize sizeHint(Position /*p*/, QSize maxsize) const { return maxsize; }
+ virtual TQSize sizeHint(Position /*p*/, TQSize maxsize) const { return maxsize; }
/**
* Always use this KConfig object to save/load your extensions configuration.
@@ -210,10 +210,10 @@ public:
/**
* @return the extension's custom menu, usually the same as the context menu, or 0 if none
- * @see setCustomMenu(QPopupMenu*)
+ * @see setCustomMenu(TQPopupMenu*)
* @since 3.4
*/
- QPopupMenu* customMenu() const;
+ TQPopupMenu* customMenu() const;
/**
* @return whether or not to set a desktop geometry claiming strut for this panel
@@ -321,7 +321,7 @@ protected:
* with the new menu (or 0) to avoid crashes
* @since 3.4
*/
- void setCustomMenu(QPopupMenu*);
+ void setCustomMenu(TQPopupMenu*);
/**
* Use this method to set the return value for reserveStrut