Skip to content

Commit

Permalink
Removed main window as unnecessary at this point.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrsnen committed May 15, 2017
1 parent fc06b18 commit 77c5605
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 242 deletions.
3 changes: 0 additions & 3 deletions HEVC_conference.pro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ SOURCES +=\
src/filter.cpp \
src/filtergraph.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/videowidget.cpp \
src/kvazaarfilter.cpp \
src/rgb32toyuv.cpp \
Expand Down Expand Up @@ -54,7 +53,6 @@ HEADERS += \
src/displayfilter.h \
src/filter.h \
src/filtergraph.h \
src/mainwindow.h \
src/videowidget.h \
src/kvazaarfilter.h \
src/rgb32toyuv.h \
Expand Down Expand Up @@ -83,7 +81,6 @@ HEADERS += \

FORMS += \
ui/callwindow.ui \
ui/mainwindow.ui \
ui/statisticswindow.ui \
ui/callingwidget.ui

Expand Down
15 changes: 12 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
#include "mainwindow.h"
#include "callwindow.h"

#include <QApplication>



int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setApplicationName("HEVC Conferencing");
MainWindow w;
w.show();

// TODO load settings file

QString name = "";
CallWindow call(NULL, 640, 480, name);

call.show();
call.startStream();

return a.exec();
}
43 changes: 0 additions & 43 deletions src/mainwindow.cpp

This file was deleted.

29 changes: 0 additions & 29 deletions src/mainwindow.h

This file was deleted.

164 changes: 0 additions & 164 deletions ui/mainwindow.ui

This file was deleted.

0 comments on commit 77c5605

Please sign in to comment.