summaryrefslogtreecommitdiffstats
path: root/kdeui/kpanelextension.cpp
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.cpp
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.cpp')
-rw-r--r--kdeui/kpanelextension.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdeui/kpanelextension.cpp b/kdeui/kpanelextension.cpp
index 190540f70..bcb50cc57 100644
--- a/kdeui/kpanelextension.cpp
+++ b/kdeui/kpanelextension.cpp
@@ -21,7 +21,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************/
-#include <qpopupmenu.h>
+#include <tqpopupmenu.h>
#include <kconfig.h>
@@ -39,14 +39,14 @@ public:
{}
KPanelExtension::Size _size;
- QPopupMenu* _customMenu;
+ TQPopupMenu* _customMenu;
int _customSize;
bool _reserveStrut;
};
-KPanelExtension::KPanelExtension(const QString& configFile, Type type,
- int actions, QWidget *parent, const char *name)
- : QFrame(parent, name)
+KPanelExtension::KPanelExtension(const TQString& configFile, Type type,
+ int actions, TQWidget *parent, const char *name)
+ : TQFrame(parent, name)
, _type(type)
, _position( Top )
, _alignment( LeftTop )
@@ -138,12 +138,12 @@ int KPanelExtension::sizeInPixels() const
return d->_customSize;
}
-QPopupMenu* KPanelExtension::customMenu() const
+TQPopupMenu* KPanelExtension::customMenu() const
{
return d->_customMenu;
}
-void KPanelExtension::setCustomMenu(QPopupMenu* menu)
+void KPanelExtension::setCustomMenu(TQPopupMenu* menu)
{
d->_customMenu = menu;
}