diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:29:01 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:29:01 +0000 |
commit | b678e7f967f438e123324c7a34b02388e68d70dc (patch) | |
tree | 5720acc1076baf217f77c48c96f7cabdbab4382b /ksim/ksimview.cpp | |
parent | 5f5ee2367157176ed223b86343eb0a9e4022e020 (diff) | |
download | tdeutils-b678e7f967f438e123324c7a34b02388e68d70dc.tar.gz tdeutils-b678e7f967f438e123324c7a34b02388e68d70dc.zip |
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1158453 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/ksimview.cpp')
-rw-r--r-- | ksim/ksimview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksim/ksimview.cpp b/ksim/ksimview.cpp index 18f29e9..64f4462 100644 --- a/ksim/ksimview.cpp +++ b/ksim/ksimview.cpp @@ -95,7 +95,7 @@ KSim::MainView::MainView(KConfig *config, m_topFrame = new KSim::Frame(KSim::Types::TopFrame, this); m_subLayout->addWidget(m_topFrame); - m_sizeLayout = new QHBoxLayout; + m_sizeLayout = new TQHBoxLayout; m_subLayout->addLayout(m_sizeLayout); m_leftFrame = new KSim::Frame(KSim::Types::LeftFrame, this); @@ -104,7 +104,7 @@ KSim::MainView::MainView(KConfig *config, m_pluginLayout = new TQBoxLayout(TQBoxLayout::TopToBottom); m_sizeLayout->addLayout(m_pluginLayout); - TQVBoxLayout *vb = new QVBoxLayout; + TQVBoxLayout *vb = new TQVBoxLayout; TQSpacerItem *item = new TQSpacerItem(0, 0, TQSizePolicy::Expanding, TQSizePolicy::Expanding); vb->addItem(item); @@ -126,7 +126,7 @@ KSim::MainView::MainView(KConfig *config, m_hostLabel->setText(host); } - vb = new QVBoxLayout; + vb = new TQVBoxLayout; item = new TQSpacerItem(0, 0, TQSizePolicy::Expanding, TQSizePolicy::Expanding); vb->addItem(item); m_sysinfo = new KSim::Sysinfo(m_config, this); |