mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-29 07:02:34 +02:00
2021-02-05 Fred Gleason <fredg@paravelsystems.com>
* Removed 'Q3TextStream' dependencies from rmlsend(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
e4d26cfca2
commit
6a9fdb1b59
@ -21026,3 +21026,5 @@
|
||||
a cart in the 'Select Cart' dialog.
|
||||
2021-02-05 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Removed 'Q3SocketDevice' dependencies from rmlsend(1).
|
||||
2021-02-05 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Removed 'Q3TextStream' dependencies from rmlsend(1).
|
||||
|
@ -356,8 +356,8 @@ void MainObject::InitStream()
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
input_stream=new Q3TextStream(f,QIODevice::ReadOnly);
|
||||
input_stream->setEncoding(Q3TextStream::UnicodeUTF8);
|
||||
input_stream=new QTextStream(f,QIODevice::ReadOnly);
|
||||
input_stream->setEncoding(QTextStream::UnicodeUTF8);
|
||||
}
|
||||
|
||||
|
||||
|
@ -21,11 +21,10 @@
|
||||
#ifndef RMLSEND_H
|
||||
#define RMLSEND_H
|
||||
|
||||
#include <q3textstream.h>
|
||||
|
||||
#include <QComboBox>
|
||||
#include <QLabel>
|
||||
#include <QPushButton>
|
||||
#include <QTextStream>
|
||||
#include <QUdpSocket>
|
||||
|
||||
#include <rd.h>
|
||||
@ -83,7 +82,7 @@ class MainObject : public QObject
|
||||
void ProcessCommands();
|
||||
int input_fd;
|
||||
QString input_file;
|
||||
Q3TextStream *input_stream;
|
||||
QTextStream *input_stream;
|
||||
QString dest_hostname;
|
||||
QHostAddress *dest_addr;
|
||||
unsigned dest_port;
|
||||
|
Loading…
x
Reference in New Issue
Block a user