diff options
| author | 2007-01-23 22:24:31 +0000 | |
|---|---|---|
| committer | 2007-01-23 22:24:31 +0000 | |
| commit | daf9b531b3b8b058dc07b2e818876ece1943cb76 (patch) | |
| tree | e605c2b2a174ca3ddca4f35bae9d8c66e9497dac /src/modules/filetransferwindow | |
| parent | not important fix (diff) | |
| download | KVIrc-daf9b531b3b8b058dc07b2e818876ece1943cb76.tar.gz KVIrc-daf9b531b3b8b058dc07b2e818876ece1943cb76.tar.bz2 KVIrc-daf9b531b3b8b058dc07b2e818876ece1943cb76.zip | |
More Qt 4.x port
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@246 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/filetransferwindow')
| -rw-r--r-- | src/modules/filetransferwindow/filetransferwindow.cpp | 8 | ||||
| -rw-r--r-- | src/modules/filetransferwindow/filetransferwindow.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/filetransferwindow/filetransferwindow.cpp b/src/modules/filetransferwindow/filetransferwindow.cpp index d88433f8e..740790300 100644 --- a/src/modules/filetransferwindow/filetransferwindow.cpp +++ b/src/modules/filetransferwindow/filetransferwindow.cpp @@ -38,7 +38,7 @@ #include <qsplitter.h> #include <qtooltip.h> -#include <qhbox.h> +#include "kvi_tal_hbox.h" #include <qheader.h> #include <qpainter.h> #include <qmessagebox.h> @@ -276,11 +276,11 @@ void KviFileTransferWindow::doubleClicked(QListViewItem *it,const QPoint &pnt,in void KviFileTransferWindow::rightButtonPressed(QListViewItem *it,const QPoint &pnt,int col) { - if(!m_pContextPopup)m_pContextPopup = new QPopupMenu(this); - if(!m_pLocalFilePopup)m_pLocalFilePopup = new QPopupMenu(this); + if(!m_pContextPopup)m_pContextPopup = new KviTalPopupMenu(this); + if(!m_pLocalFilePopup)m_pLocalFilePopup = new KviTalPopupMenu(this); if(!m_pOpenFilePopup) { - m_pOpenFilePopup= new QPopupMenu(this); + m_pOpenFilePopup= new KviTalPopupMenu(this); connect(m_pOpenFilePopup,SIGNAL(activated(int)),this,SLOT(openFilePopupActivated(int))); } diff --git a/src/modules/filetransferwindow/filetransferwindow.h b/src/modules/filetransferwindow/filetransferwindow.h index 5fcaca4ab..17eddb41a 100644 --- a/src/modules/filetransferwindow/filetransferwindow.h +++ b/src/modules/filetransferwindow/filetransferwindow.h @@ -34,7 +34,7 @@ #include "kvi_dynamictooltip.h" #include <qlistview.h> -#include <qpopupmenu.h> +#include "kvi_tal_popupmenu.h" #include <qtoolbutton.h> #include <qtimer.h> #include <qpixmap.h> @@ -66,9 +66,9 @@ public: protected: QSplitter * m_pVertSplitter; QListView * m_pListView; - QPopupMenu * m_pContextPopup; - QPopupMenu * m_pLocalFilePopup; - QPopupMenu * m_pOpenFilePopup; + KviTalPopupMenu * m_pContextPopup; + KviTalPopupMenu * m_pLocalFilePopup; + KviTalPopupMenu * m_pOpenFilePopup; QTimer * m_pTimer; QPixmap * m_pMemPixmap; int m_iLineSpacing; // cached fm value |
