2018-08-15 Fred Gleason <fredg@paravelsystems.com>

* Fixed style inconsistencies in dialogs within rdselect(8).
This commit is contained in:
Fred Gleason 2018-08-15 14:44:42 +00:00
parent df08ed676d
commit 7ddc6b04f9
3 changed files with 7 additions and 10 deletions

View File

@ -17411,3 +17411,5 @@
2018-08-15 Fred Gleason <fredg@paravelsystems.com> 2018-08-15 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression that caused Sound Panel buttons to lose their * Fixed a regression that caused Sound Panel buttons to lose their
border. border.
2018-08-15 Fred Gleason <fredg@paravelsystems.com>
* Fixed style inconsistencies in dialogs within rdselect(8).

View File

@ -2,7 +2,7 @@
// //
// System Selector for Rivendell // System Selector for Rivendell
// //
// (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
@ -34,9 +34,6 @@
#include <qtranslator.h> #include <qtranslator.h>
#include <qdir.h> #include <qdir.h>
#include <qdesktopwidget.h> #include <qdesktopwidget.h>
//Added by qt3to4:
#include <QResizeEvent>
#include <QPixmap>
#include <rd.h> #include <rd.h>
#include <rdconf.h> #include <rdconf.h>
@ -122,8 +119,8 @@ MainWidget::MainWidget(QWidget *parent)
// Create And Set Icons // Create And Set Icons
// //
login_rivendell_map=new QPixmap(rivendell_22x22_xpm); login_rivendell_map=new QPixmap(rivendell_22x22_xpm);
setIcon(*login_rivendell_map); setWindowIcon(*login_rivendell_map);
setCaption(tr("RDSelect")+" v"+VERSION); setWindowTitle(QString("RDSelect - v")+VERSION);
greencheckmark_map=new QPixmap(greencheckmark_xpm); greencheckmark_map=new QPixmap(greencheckmark_xpm);
redx_map=new QPixmap(redx_xpm); redx_map=new QPixmap(redx_xpm);

View File

@ -2,7 +2,7 @@
// //
// System Selector for Rivendell // System Selector for Rivendell
// //
// (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
@ -31,8 +31,6 @@
#include <qpushbutton.h> #include <qpushbutton.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qpixmap.h> #include <qpixmap.h>
//Added by qt3to4:
#include <QResizeEvent>
#include <rdconfig.h> #include <rdconfig.h>
#include <rdmonitor_config.h> #include <rdmonitor_config.h>
@ -74,4 +72,4 @@ class MainWidget : public QWidget
}; };
#endif // RDLOGIN_H #endif // RDSELECT_H