summaryrefslogtreecommitdiffstats
path: root/kdat/InfoShellWidget.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
commitaa3a1ca934bc541bddd3fa136a85f106f7da266e (patch)
tree9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/InfoShellWidget.cpp
parentb10cf7066791a2f362495890cd50c984e8025412 (diff)
downloadtdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz
tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdat/InfoShellWidget.cpp')
-rw-r--r--kdat/InfoShellWidget.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdat/InfoShellWidget.cpp b/kdat/InfoShellWidget.cpp
index e7c3189..fc96e8c 100644
--- a/kdat/InfoShellWidget.cpp
+++ b/kdat/InfoShellWidget.cpp
@@ -16,15 +16,15 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-#include <qobjectlist.h>
-#include <qobjectdict.h>
+#include <tqobjectlist.h>
+#include <tqobjectdict.h>
#include "InfoShellWidget.h"
#include "InfoShellWidget.moc"
-InfoShellWidget::InfoShellWidget( QWidget* parent, const char* name )
- : QWidget( parent, name )
+InfoShellWidget::InfoShellWidget( TQWidget* parent, const char* name )
+ : TQWidget( parent, name )
{
}
@@ -32,12 +32,12 @@ InfoShellWidget::~InfoShellWidget()
{
}
-void InfoShellWidget::resizeEvent( QResizeEvent* )
+void InfoShellWidget::resizeEvent( TQResizeEvent* )
{
if ( children() ) {
- QObjectListIt i( *children() );
+ TQObjectListIt i( *children() );
for ( ; i.current(); ++i ) {
- ((QWidget*)i.current())->resize( size() );
+ ((TQWidget*)i.current())->resize( size() );
}
}
}