mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 16:11:12 +02:00
2019-01-16 Fred Gleason <fredg@paravelsystems.com>
* Moved the 'RDLicense' class in the convienence library to 'License' in 'rdadmin(1).
This commit is contained in:
@@ -33,12 +33,12 @@
|
||||
#include <QLabel>
|
||||
|
||||
#include <rdlabel.h>
|
||||
#include <rdlicense.h>
|
||||
#include <rdstation.h>
|
||||
#include <rd.h>
|
||||
#include <dbversion.h>
|
||||
|
||||
#include "info_dialog.h"
|
||||
#include "license.h"
|
||||
|
||||
//
|
||||
// This is a kludge, but apparently needed to get the bitmap data
|
||||
@@ -184,16 +184,16 @@ QSizePolicy InfoDialog::sizePolicy() const
|
||||
|
||||
void InfoDialog::viewCreditsData()
|
||||
{
|
||||
RDLicense *lic=new RDLicense(this);
|
||||
lic->exec(RDLicense::Credits);
|
||||
License *lic=new License(this);
|
||||
lic->exec(License::Credits);
|
||||
delete lic;
|
||||
}
|
||||
|
||||
|
||||
void InfoDialog::viewLicenseData()
|
||||
{
|
||||
RDLicense *lic=new RDLicense(this);
|
||||
lic->exec(RDLicense::GplV2);
|
||||
License *lic=new License(this);
|
||||
lic->exec(License::GplV2);
|
||||
delete lic;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user