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

@@ -19,7 +19,7 @@
//
#include <qpushbutton.h>
#include <qfiledialog.h>
#include <q3filedialog.h>
#include <qmessagebox.h>
#include <rdconf.h>
@@ -40,7 +40,7 @@ RDExceptionDialog::RDExceptionDialog(QString report,QWidget *parent)
//
// Report Viewer
//
report_view=new QTextView(this,"report_view");
report_view=new Q3TextView(this,"report_view");
report_view->setGeometry(10,10,sizeHint().width()-20,sizeHint().height()-80);
report_view->setText(report);
@@ -87,7 +87,7 @@ void RDExceptionDialog::saveData()
{
QString str1;
QString str2;
QString filename=QFileDialog::getSaveFileName(RDGetHomeDir(),
QString filename=Q3FileDialog::getSaveFileName(RDGetHomeDir(),
tr("Text (*.txt *.TXT)\nAll Files (*.*)"),
this,tr("Export File"));
if(filename.isEmpty()) {