diff options
Diffstat (limited to 'src/modules/raweditor/raweditor.cpp')
| -rw-r--r-- | src/modules/raweditor/raweditor.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/raweditor/raweditor.cpp b/src/modules/raweditor/raweditor.cpp index 262a8b0e2..7a3189a4f 100644 --- a/src/modules/raweditor/raweditor.cpp +++ b/src/modules/raweditor/raweditor.cpp @@ -39,8 +39,8 @@ #include <qmessagebox.h> #include <qsplitter.h> #include <qlayout.h> -#include <qvbox.h> -#include <qpopupmenu.h> +#include "kvi_tal_vbox.h" +#include "kvi_tal_popupmenu.h" #include <qtooltip.h> #include <qinputdialog.h> #include <qpushbutton.h> @@ -79,7 +79,7 @@ KviRawEditor::KviRawEditor(QWidget * par) l->addWidget(spl,0,0); - QVBox * boxi = new QVBox(spl); + KviTalVBox * boxi = new KviTalVBox(spl); m_pListView = new QListView(boxi); m_pListView->addColumn(__tr2qs("Raw Event")); m_pListView->setMultiSelection(false); @@ -89,7 +89,7 @@ KviRawEditor::KviRawEditor(QWidget * par) QPushButton * pb = new QPushButton(__tr2qs("&Export All To..."),boxi); connect(pb,SIGNAL(clicked()),this,SLOT(exportAllEvents())); - QVBox * box = new QVBox(spl); + KviTalVBox * box = new KviTalVBox(spl); m_pNameEditor = new QLineEdit(box); QToolTip::add(m_pNameEditor,__tr2qs("Edit the raw event handler name.")); m_pEditor = KviScriptEditor::createInstance(box); @@ -130,7 +130,7 @@ void KviRawEditor::oneTimeSetup() } - m_pContextPopup = new QPopupMenu(this); + m_pContextPopup = new KviTalPopupMenu(this); connect(m_pListView,SIGNAL(selectionChanged(QListViewItem *)),this,SLOT(selectionChanged(QListViewItem *))); connect(m_pListView,SIGNAL(rightButtonPressed(QListViewItem *,const QPoint &,int)), |
