mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-21 06:01:15 +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:
@@ -21026,3 +21026,5 @@
|
|||||||
a cart in the 'Select Cart' dialog.
|
a cart in the 'Select Cart' dialog.
|
||||||
2021-02-05 Fred Gleason <fredg@paravelsystems.com>
|
2021-02-05 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Removed 'Q3SocketDevice' dependencies from rmlsend(1).
|
* 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);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
input_stream=new Q3TextStream(f,QIODevice::ReadOnly);
|
input_stream=new QTextStream(f,QIODevice::ReadOnly);
|
||||||
input_stream->setEncoding(Q3TextStream::UnicodeUTF8);
|
input_stream->setEncoding(QTextStream::UnicodeUTF8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -21,11 +21,10 @@
|
|||||||
#ifndef RMLSEND_H
|
#ifndef RMLSEND_H
|
||||||
#define RMLSEND_H
|
#define RMLSEND_H
|
||||||
|
|
||||||
#include <q3textstream.h>
|
|
||||||
|
|
||||||
#include <QComboBox>
|
#include <QComboBox>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
|
#include <QTextStream>
|
||||||
#include <QUdpSocket>
|
#include <QUdpSocket>
|
||||||
|
|
||||||
#include <rd.h>
|
#include <rd.h>
|
||||||
@@ -83,7 +82,7 @@ class MainObject : public QObject
|
|||||||
void ProcessCommands();
|
void ProcessCommands();
|
||||||
int input_fd;
|
int input_fd;
|
||||||
QString input_file;
|
QString input_file;
|
||||||
Q3TextStream *input_stream;
|
QTextStream *input_stream;
|
||||||
QString dest_hostname;
|
QString dest_hostname;
|
||||||
QHostAddress *dest_addr;
|
QHostAddress *dest_addr;
|
||||||
unsigned dest_port;
|
unsigned dest_port;
|
||||||
|
Reference in New Issue
Block a user