summaryrefslogtreecommitdiffstats
path: root/src/modules/popupeditor
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:07:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 23:06:51 +0900
commit945085d2d242018111b8bb1e1082ebe2021b720b (patch)
tree9162dfce141628f7e5d7ffc311dc0df860a6b29b /src/modules/popupeditor
parent776d38202f9be592e1b6b99dbc81a64ee584c5c0 (diff)
downloadkvirc-945085d2d242018111b8bb1e1082ebe2021b720b.tar.gz
kvirc-945085d2d242018111b8bb1e1082ebe2021b720b.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9577f4de07539fb2464a1499d45b25993c5cea46)
Diffstat (limited to 'src/modules/popupeditor')
-rw-r--r--src/modules/popupeditor/popupeditor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/popupeditor/popupeditor.cpp b/src/modules/popupeditor/popupeditor.cpp
index cd2d8ba6..7fe805c7 100644
--- a/src/modules/popupeditor/popupeditor.cpp
+++ b/src/modules/popupeditor/popupeditor.cpp
@@ -202,7 +202,7 @@ KviSinglePopupEditor::KviSinglePopupEditor(TQWidget * par)
m_pMenuButton = new TQPushButton(__tr2qs("Test"),this);
g->addWidget(m_pMenuButton,0,2);
connect(m_pMenuButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(testPopup()));
- TQSplitter * spl = new TQSplitter(Qt::Vertical,this);
+ TQSplitter * spl = new TQSplitter(TQt::Vertical,this);
m_pListView = new KviTalListView(spl);
m_pListView->addColumn(__tr2qs("Item"));
@@ -1023,7 +1023,7 @@ KviPopupEditor::KviPopupEditor(TQWidget * par)
: TQWidget(par)
{
TQGridLayout * l = new TQGridLayout(this,1,1,0,2);
- TQSplitter * spl = new TQSplitter(Qt::Horizontal,this);
+ TQSplitter * spl = new TQSplitter(TQt::Horizontal,this);
l->addWidget(spl,0,0);
KviTalVBox * box = new KviTalVBox(spl);