summaryrefslogtreecommitdiffstats
path: root/kbugbuster/gui/centralwidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-08 11:05:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-08 18:04:37 +0900
commit5d52b8ff2df2d127a119ffd217a0db49c4d78567 (patch)
treecc21f36537bfb38f376cf97cb77688ea19882047 /kbugbuster/gui/centralwidget.cpp
parent779722e260dd4d10bec7328ddc0a4e3e42a08e7d (diff)
downloadtdesdk-5d52b8ff.tar.gz
tdesdk-5d52b8ff.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1a7a57976491e8df569198d8e903bf9e57e233f0)
Diffstat (limited to 'kbugbuster/gui/centralwidget.cpp')
-rw-r--r--kbugbuster/gui/centralwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kbugbuster/gui/centralwidget.cpp b/kbugbuster/gui/centralwidget.cpp
index f4e4c793..263c9f86 100644
--- a/kbugbuster/gui/centralwidget.cpp
+++ b/kbugbuster/gui/centralwidget.cpp
@@ -57,9 +57,9 @@ CentralWidget::CentralWidget( const TQCString &initialPackage,
KDialog::spacingHint() ) )->setAutoAdd( true );
// Create TQSplitter children
- m_vertSplitter = new TQSplitter( Qt::Vertical, this );
+ m_vertSplitter = new TQSplitter( TQt::Vertical, this );
m_listPane = new CWBugListContainer( m_vertSplitter );
- m_horSplitter = new TQSplitter( Qt::Horizontal,m_vertSplitter );
+ m_horSplitter = new TQSplitter( TQt::Horizontal,m_vertSplitter );
// The search pane isn't used. Should we remove the code?
m_searchPane = new CWSearchWidget( m_horSplitter );
m_bugPane = new CWBugDetailsContainer( m_horSplitter );