- Server now updates the "packet list" after every "apply" rather than before a "start transmit" (if dirty) - this better reflects user's expectation from these operations - Client disables the entire application and changes to a "Busy" cursor when "applying" stream configuration Fixes - UDP checksum no longer is zero but a valid value - Order of streams no longer gets messed up across a "apply"
18 lines
295 B
C++
18 lines
295 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
QMainWindow *mainWindow;
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
int exitCode;
|
|
|
|
mainWindow = new MainWindow;
|
|
mainWindow->show();
|
|
exitCode = app.exec();
|
|
delete mainWindow;
|
|
return exitCode;
|
|
}
|