mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-22 08:35:44 +01:00
2018-08-15 Fred Gleason <fredg@paravelsystems.com>
* Fixed style inconsistencies in dialogs within rddgimport(1).
This commit is contained in:
@@ -17430,3 +17430,5 @@
|
|||||||
* Fixed style inconsistencies in dialogs within rdalsaconfig(8).
|
* Fixed style inconsistencies in dialogs within rdalsaconfig(8).
|
||||||
2018-08-15 Fred Gleason <fredg@paravelsystems.com>
|
2018-08-15 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Remved 'rdcheckcuts.pro'.
|
* Remved 'rdcheckcuts.pro'.
|
||||||
|
2018-08-15 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed style inconsistencies in dialogs within rddgimport(1).
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// Abstract a Dial Global Spot Event
|
// Abstract a Dial Global Spot Event
|
||||||
//
|
//
|
||||||
// (C) Copyright 2012,2016 Fred Gleason <fredg@paravelsystems.com>
|
// (C) Copyright 2012-2018 Fred Gleason <fredg@paravelsystems.com>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// This program is free software; you can redistribute it and/or modify
|
||||||
// it under the terms of the GNU General Public License version 2 as
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <event.h>
|
#include "event.h"
|
||||||
|
|
||||||
Event::Event()
|
Event::Event()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// Abstract a Dial Global Spot Event
|
// Abstract a Dial Global Spot Event
|
||||||
//
|
//
|
||||||
// (C) Copyright 2012,2016 Fred Gleason <fredg@paravelsystems.com>
|
// (C) Copyright 2012-2018 Fred Gleason <fredg@paravelsystems.com>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// This program is free software; you can redistribute it and/or modify
|
||||||
// it under the terms of the GNU General Public License version 2 as
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// A Qt-based application for importing Dial Global CDN downloads
|
// A Qt-based application for importing Dial Global CDN downloads
|
||||||
//
|
//
|
||||||
// (C) Copyright 2012,2016-2018 Fred Gleason <fredg@paravelsystems.com>
|
// (C) Copyright 2012-2018 Fred Gleason <fredg@paravelsystems.com>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// This program is free software; you can redistribute it and/or modify
|
||||||
// it under the terms of the GNU General Public License version 2 as
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
@@ -27,12 +27,9 @@
|
|||||||
#include <qtextcodec.h>
|
#include <qtextcodec.h>
|
||||||
#include <q3filedialog.h>
|
#include <q3filedialog.h>
|
||||||
#include <qmessagebox.h>
|
#include <qmessagebox.h>
|
||||||
|
#include <qtranslator.h>
|
||||||
#include <qstringlist.h>
|
#include <qstringlist.h>
|
||||||
#include <qfile.h>
|
#include <qfile.h>
|
||||||
//Added by qt3to4:
|
|
||||||
#include <QTranslator>
|
|
||||||
#include <QLabel>
|
|
||||||
#include <QResizeEvent>
|
|
||||||
|
|
||||||
#include <rdapplication.h>
|
#include <rdapplication.h>
|
||||||
#include <rdaudioimport.h>
|
#include <rdaudioimport.h>
|
||||||
@@ -46,6 +43,11 @@
|
|||||||
|
|
||||||
#include "rddgimport.h"
|
#include "rddgimport.h"
|
||||||
|
|
||||||
|
//
|
||||||
|
// Icons
|
||||||
|
//
|
||||||
|
#include "../../icons/rivendell-22x22.xpm"
|
||||||
|
|
||||||
MainWidget::MainWidget(QWidget *parent)
|
MainWidget::MainWidget(QWidget *parent)
|
||||||
: QWidget(parent)
|
: QWidget(parent)
|
||||||
{
|
{
|
||||||
@@ -56,6 +58,11 @@ MainWidget::MainWidget(QWidget *parent)
|
|||||||
dg_group=NULL;
|
dg_group=NULL;
|
||||||
dg_svc=NULL;
|
dg_svc=NULL;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Create And Set Icon
|
||||||
|
//
|
||||||
|
setWindowIcon(QPixmap(rivendell_22x22_xpm));
|
||||||
|
|
||||||
//
|
//
|
||||||
// Open the Database
|
// Open the Database
|
||||||
//
|
//
|
||||||
@@ -290,7 +297,7 @@ void MainWidget::SetCaption()
|
|||||||
{
|
{
|
||||||
QString username=tr("[unknown]");
|
QString username=tr("[unknown]");
|
||||||
username=rda->user()->name();
|
username=rda->user()->name();
|
||||||
setCaption(tr("RDDgImport")+" v"+VERSION+" "+tr("User")+": "+username);
|
setWindowTitle(tr("RDDgImport")+" v"+VERSION+" "+tr("User")+": "+username);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// A Qt-based application for importing Dial Global CDN downloads
|
// A Qt-based application for importing Dial Global CDN downloads
|
||||||
//
|
//
|
||||||
// (C) Copyright 2012,2016-2018 Fred Gleason <fredg@paravelsystems.com>
|
// (C) Copyright 2012-2018 Fred Gleason <fredg@paravelsystems.com>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// This program is free software; you can redistribute it and/or modify
|
||||||
// it under the terms of the GNU General Public License version 2 as
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
@@ -34,8 +34,6 @@
|
|||||||
#include <qdatetime.h>
|
#include <qdatetime.h>
|
||||||
#include <q3datetimeedit.h>
|
#include <q3datetimeedit.h>
|
||||||
#include <q3textedit.h>
|
#include <q3textedit.h>
|
||||||
//Added by qt3to4:
|
|
||||||
#include <QResizeEvent>
|
|
||||||
|
|
||||||
#include <rdbusybar.h>
|
#include <rdbusybar.h>
|
||||||
#include <rddb.h>
|
#include <rddb.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user