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

* Fixed style inconsistencies in dialogs within rdalsaconfig(8).
This commit is contained in:
Fred Gleason
2018-08-15 20:16:03 +00:00
parent 04ac48a52f
commit 3ac098d2b9
7 changed files with 20 additions and 16 deletions

View File

@@ -17426,3 +17426,5 @@
2018-08-15 Fred Gleason <fredg@paravelsystems.com>
* Fixed text rendering errors in the 'Edit Event' dialog in
rdlogmanager(1).
2018-08-15 Fred Gleason <fredg@paravelsystems.com>
* Fixed style inconsistencies in dialogs within rdalsaconfig(8).

View File

@@ -2,7 +2,7 @@
//
// QListBoxItem for ALSA PCM devices.
//
// (C) Copyright 2009,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2009-2018 Fred Gleason <fredg@paravelsystems.com>
//
// 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

View File

@@ -2,7 +2,7 @@
//
// QListBoxItem for ALSA PCM devices.
//
// (C) Copyright 2009,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2009-2018 Fred Gleason <fredg@paravelsystems.com>
//
// 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

View File

@@ -2,7 +2,7 @@
//
// Abstract an ALSA configuration.
//
// (C) Copyright 2009,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2009-2018 Fred Gleason <fredg@paravelsystems.com>
//
// 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

View File

@@ -2,7 +2,7 @@
//
// Abstract an ALSA configuration.
//
// (C) Copyright 2009,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2009-2018 Fred Gleason <fredg@paravelsystems.com>
//
// 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

View File

@@ -2,7 +2,7 @@
//
// A Qt-based application to display info about ALSA cards.
//
// (C) Copyright 2009,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2009-2018 Fred Gleason <fredg@paravelsystems.com>
//
// 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
@@ -23,18 +23,18 @@
#include <sys/types.h>
#include <qapplication.h>
#include <qwindowsstyle.h>
#include <qmessagebox.h>
//Added by qt3to4:
#include <QCloseEvent>
#include <QResizeEvent>
#include <QLabel>
#include <rdcmd_switch.h>
#include <alsaitem.h>
#include <rdalsaconfig.h>
//
// Icons
//
#include "../../icons/rivendell-22x22.xpm"
//
// Globals
//
@@ -63,9 +63,14 @@ void StartDaemons()
MainWidget::MainWidget(QWidget *parent)
:QWidget(parent)
: QWidget(parent)
{
setCaption(tr("RDAlsaConfig")+" v"+VERSION);
setWindowTitle(tr("RDAlsaConfig")+" v"+VERSION);
//
// Create And Set Icon
//
setWindowIcon(QPixmap(rivendell_22x22_xpm));
//
// Fix the Window Size

View File

@@ -2,7 +2,7 @@
//
// A Qt-based application to display info about ALSA cards.
//
// (C) Copyright 2009,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2009-2018 Fred Gleason <fredg@paravelsystems.com>
//
// 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
@@ -24,9 +24,6 @@
#include <qwidget.h>
#include <q3listbox.h>
#include <qlabel.h>
//Added by qt3to4:
#include <QResizeEvent>
#include <QCloseEvent>
#include <rdtransportbutton.h>