summaryrefslogtreecommitdiffstats
path: root/src/modules/popupeditor/popupeditor.cpp
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 22:47:48 +0900
commit9577f4de07539fb2464a1499d45b25993c5cea46 (patch)
tree61e334870fb8bbdb96a67452e974b13e09cb0038 /src/modules/popupeditor/popupeditor.cpp
parent87c77000cf1838c2695e7944d4f205ffb9fb44b4 (diff)
downloadkvirc-9577f4de07539fb2464a1499d45b25993c5cea46.tar.gz
kvirc-9577f4de07539fb2464a1499d45b25993c5cea46.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/popupeditor/popupeditor.cpp')
-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 cd2d8ba..7fe805c 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);