mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 23:55:56 +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,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;
|
||||
|
||||
Reference in New Issue
Block a user