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

* Fixed style inconsistencies in dialogs within rdsoftkeys(1).
This commit is contained in:
Fred Gleason
2018-08-16 15:00:05 +00:00
parent 1783b193f3
commit 841610ec0d
3 changed files with 8 additions and 8 deletions

View File

@@ -17438,3 +17438,5 @@
2018-08-16 Fred Gleason <fredg@paravelsystems.com> 2018-08-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed style inconsistencies in dialogs within rdgpimon(1). * Fixed style inconsistencies in dialogs within rdgpimon(1).
* Fixed style inconsistencies in dialogs within rdpopup(1). * Fixed style inconsistencies in dialogs within rdpopup(1).
2018-08-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed style inconsistencies in dialogs within rdsoftkeys(1).

View File

@@ -2,7 +2,7 @@
// //
// A utility for sending RML Commands // A utility for sending RML Commands
// //
// (C) Copyright 2002-2006,2016-2018 Fred Gleason <fredg@paravelsystems.com> // (C) Copyright 2002-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
@@ -51,7 +51,7 @@
#include "../icons/rivendell-22x22.xpm" #include "../icons/rivendell-22x22.xpm"
MainWidget::MainWidget(QWidget *parent) MainWidget::MainWidget(QWidget *parent)
: Q3MainWindow(parent) : QWidget(parent)
{ {
key_ysize=70; key_ysize=70;
@@ -78,7 +78,7 @@ MainWidget::MainWidget(QWidget *parent)
QFont label_font("Helvetica",18,QFont::Bold); QFont label_font("Helvetica",18,QFont::Bold);
label_font.setPixelSize(18); label_font.setPixelSize(18);
setCaption(QString("RDSoftKeys")+" v"+VERSION); setWindowTitle(QString("RDSoftKeys")+" v"+VERSION);
// //
// Create And Set Icon // Create And Set Icon

View File

@@ -2,7 +2,7 @@
// //
// A utility for sending RML Commands // A utility for sending RML Commands
// //
// (C) Copyright 2002-2006,2016 Fred Gleason <fredg@paravelsystems.com> // (C) Copyright 2002-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
@@ -23,13 +23,11 @@
#include <vector> #include <vector>
#include <q3mainwindow.h>
#include <qsize.h> #include <qsize.h>
#include <qsizepolicy.h> #include <qsizepolicy.h>
#include <qpixmap.h> #include <qpixmap.h>
#include <q3socketdevice.h> #include <q3socketdevice.h>
//Added by qt3to4: #include <qwidget.h>
#include <QCloseEvent>
#include <rdmacro.h> #include <rdmacro.h>
@@ -39,7 +37,7 @@
#define RDSOFTKEYS_USAGE "[--map-file=<filename>]\n\nWhere <filename> is the name of the file load soft key definitions from.\nThe default value is master Rivendell configuration file.\n" #define RDSOFTKEYS_USAGE "[--map-file=<filename>]\n\nWhere <filename> is the name of the file load soft key definitions from.\nThe default value is master Rivendell configuration file.\n"
#define RDSOFTKEYS_DEFAULT_COLUMNS 1 #define RDSOFTKEYS_DEFAULT_COLUMNS 1
class MainWidget : public Q3MainWindow class MainWidget : public QWidget
{ {
Q_OBJECT Q_OBJECT
public: public: