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

* Fixed style inconsistencies in dialogs within rmlsend(1).
This commit is contained in:
Fred Gleason 2018-08-16 15:02:55 +00:00
parent 841610ec0d
commit be35efdd86
3 changed files with 10 additions and 9 deletions

View File

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

View File

@ -2,7 +2,7 @@
// //
// A utility for sending RML Commands // A utility for sending RML Commands
// //
// (C) Copyright 2002-2005,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
@ -73,7 +73,7 @@
RDCmdSwitch *rdcmdswitch=NULL; RDCmdSwitch *rdcmdswitch=NULL;
MainWidget::MainWidget(QWidget *parent) MainWidget::MainWidget(QWidget *parent)
:Q3MainWindow(parent) :QWidget(parent)
{ {
// //
// Set Window Size // Set Window Size
@ -98,9 +98,10 @@ MainWidget::MainWidget(QWidget *parent)
// Create And Set Icon // Create And Set Icon
// //
rivendell_map=new QPixmap(rivendell_22x22_xpm); rivendell_map=new QPixmap(rivendell_22x22_xpm);
setIcon(*rivendell_map); setWindowIcon(*rivendell_map);
setCaption(QString("RMLSend")+" v"+VERSION+" - "+tr("Macro Command Utility")); setWindowTitle(QString("RMLSend")+" v"+VERSION+" - "+
tr("Macro Command Utility"));
host=new QLineEdit(this); host=new QLineEdit(this);
host->setGeometry(80,10,180,25); host->setGeometry(80,10,180,25);

View File

@ -2,7 +2,7 @@
// //
// A utility for sending RML Commands // A utility for sending RML Commands
// //
// (C) Copyright 2002-2005,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
@ -24,15 +24,13 @@
#include <qcombobox.h> #include <qcombobox.h>
#include <qlabel.h> #include <qlabel.h>
#include <qlineedit.h> #include <qlineedit.h>
#include <q3mainwindow.h>
#include <qpushbutton.h> #include <qpushbutton.h>
#include <qsize.h> #include <qsize.h>
#include <qsizepolicy.h> #include <qsizepolicy.h>
#include <q3socketdevice.h> #include <q3socketdevice.h>
#include <q3textstream.h> #include <q3textstream.h>
#include <qtimer.h> #include <qtimer.h>
//Added by qt3to4: #include <qwidget.h>
#include <QPixmap>
#include <rd.h> #include <rd.h>
@ -43,7 +41,7 @@
#define RMLSEND_DEFAULT_ADDR "localhost" #define RMLSEND_DEFAULT_ADDR "localhost"
#define RMLSEND_DEFAULT_PORT 5859 #define RMLSEND_DEFAULT_PORT 5859
class MainWidget : public Q3MainWindow class MainWidget : public QWidget
{ {
Q_OBJECT Q_OBJECT
public: public: