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:
Fred Gleason
2018-08-07 10:09:49 -04:00
parent 6b1a06a910
commit 796e1bebc3
774 changed files with 10347 additions and 10823 deletions

View File

@@ -23,12 +23,12 @@
#include <qwidget.h>
#include <qlabel.h>
#include <qhbox.h>
#include <q3hbox.h>
#include <qcolor.h>
#include <qlistbox.h>
#include <q3listbox.h>
#include <qpushbutton.h>
class RDListSelector : public QHBox
class RDListSelector : public Q3HBox
{
Q_OBJECT
@@ -54,10 +54,10 @@ class RDListSelector : public QHBox
QString destCurrentText() const;
void sourceSetCurrentItem(int item);
void destSetCurrentItem(int item);
QListBoxItem *sourceFindItem(const QString &text,
ComparisonFlags compare=ExactMatch) const;
QListBoxItem *destFindItem(const QString &text,
ComparisonFlags compare=ExactMatch) const;
Q3ListBoxItem *sourceFindItem(const QString &text,
Q3ListBox::ComparisonFlags compare=Q3ListBox::ExactMatch) const;
Q3ListBoxItem *destFindItem(const QString &text,
Q3ListBox::ComparisonFlags compare=Q3ListBox::ExactMatch) const;
void clear();
private slots:
@@ -66,9 +66,9 @@ class RDListSelector : public QHBox
private:
void CheckButtons();
QListBox *list_source_box;
Q3ListBox *list_source_box;
QLabel *list_source_label;
QListBox *list_dest_box;
Q3ListBox *list_dest_box;
QLabel *list_dest_label;
QPushButton *list_add_button;
QPushButton *list_remove_button;