summaryrefslogtreecommitdiffstats
path: root/ksirc/displayMgrSDI.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /ksirc/displayMgrSDI.cpp
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/displayMgrSDI.cpp')
-rw-r--r--ksirc/displayMgrSDI.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ksirc/displayMgrSDI.cpp b/ksirc/displayMgrSDI.cpp
index ee5de75b..5b59f815 100644
--- a/ksirc/displayMgrSDI.cpp
+++ b/ksirc/displayMgrSDI.cpp
@@ -1,6 +1,6 @@
#include "displayMgrSDI.h"
-#include <qwidget.h>
+#include <tqwidget.h>
DisplayMgrSDI::DisplayMgrSDI()
{
@@ -9,23 +9,23 @@ DisplayMgrSDI::DisplayMgrSDI()
DisplayMgrSDI::~DisplayMgrSDI(){
}
-void DisplayMgrSDI::newTopLevel(QWidget *w, bool show){
+void DisplayMgrSDI::newTopLevel(TQWidget *w, bool show){
if(show == TRUE)
w->show();
}
-void DisplayMgrSDI::removeTopLevel(QWidget *){
+void DisplayMgrSDI::removeTopLevel(TQWidget *){
}
-void DisplayMgrSDI::show(QWidget *w){
+void DisplayMgrSDI::show(TQWidget *w){
w->show();
}
-void DisplayMgrSDI::hide(QWidget *w){
+void DisplayMgrSDI::hide(TQWidget *w){
w->hide();
}
-void DisplayMgrSDI::raise(QWidget *w, bool takefocus){
+void DisplayMgrSDI::raise(TQWidget *w, bool takefocus){
w->show();
w->raise();
if(takefocus)
@@ -34,7 +34,7 @@ void DisplayMgrSDI::raise(QWidget *w, bool takefocus){
}
-void DisplayMgrSDI::setCaption(QWidget *w, const QString& cap){
+void DisplayMgrSDI::setCaption(TQWidget *w, const TQString& cap){
w->setCaption(cap);
}