mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +01:00
2018-08-07 Fred Gleason <fredg@paravelsystems.com>
* Removed the 'pam_rd' plug-in. * Removed rdchunk(1). * Upgraded Qt3 to Qt4.
This commit is contained in:
@@ -23,13 +23,15 @@
|
||||
#include <qdialog.h>
|
||||
#include <qstring.h>
|
||||
#include <qpushbutton.h>
|
||||
#include <qlistbox.h>
|
||||
#include <qtextedit.h>
|
||||
#include <q3listbox.h>
|
||||
#include <q3textedit.h>
|
||||
#include <qlabel.h>
|
||||
#include <qpainter.h>
|
||||
#include <qevent.h>
|
||||
#include <qmessagebox.h>
|
||||
#include <qbuttongroup.h>
|
||||
#include <q3buttongroup.h>
|
||||
//Added by qt3to4:
|
||||
#include <QResizeEvent>
|
||||
#include <rddb.h>
|
||||
|
||||
#include <rdcart.h>
|
||||
@@ -120,9 +122,9 @@ ListReplicators::ListReplicators(QWidget *parent)
|
||||
list_box_label->setFont(font);
|
||||
list_box_label->setGeometry(14,11,85,19);
|
||||
connect(list_replicators_view,
|
||||
SIGNAL(doubleClicked(QListViewItem *,const QPoint &,int)),
|
||||
SIGNAL(doubleClicked(Q3ListViewItem *,const QPoint &,int)),
|
||||
this,
|
||||
SLOT(doubleClickedData(QListViewItem *,const QPoint &,int)));
|
||||
SLOT(doubleClickedData(Q3ListViewItem *,const QPoint &,int)));
|
||||
|
||||
RefreshList();
|
||||
}
|
||||
@@ -196,7 +198,7 @@ void ListReplicators::deleteData()
|
||||
switch(QMessageBox::warning(this,tr("Delete Replicator"),warning,
|
||||
QMessageBox::Yes,QMessageBox::No)) {
|
||||
case QMessageBox::No:
|
||||
case QMessageBox::NoButton:
|
||||
case Qt::NoButton:
|
||||
return;
|
||||
|
||||
default:
|
||||
@@ -246,7 +248,7 @@ void ListReplicators::listData()
|
||||
}
|
||||
|
||||
|
||||
void ListReplicators::doubleClickedData(QListViewItem *item,const QPoint &pt,
|
||||
void ListReplicators::doubleClickedData(Q3ListViewItem *item,const QPoint &pt,
|
||||
int col)
|
||||
{
|
||||
editData();
|
||||
|
||||
Reference in New Issue
Block a user