summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-09-21 10:57:35 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-09-21 10:57:35 +0200
commitdc0e0e379ba1a9474f5e760c26c076fd1f13ac57 (patch)
tree247802a66ab868d08d31055248a58a16a9d2d458 /src/mainwindow.h
parentb3cf6b4c1d1477f1cac83f9dc6165781171c2a9e (diff)
Add peer name to video widget.
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 72ba092..d8329bb 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -38,6 +38,7 @@
#include "audiooutputhandler.h"
#include "outputstreamer.h"
#include "inputstreamer.h"
+#include "videowidget.h"
class MainWindow : public QMainWindow {
Q_OBJECT
@@ -47,7 +48,6 @@ public:
QList<InputStreamer*> &islist);
public slots:
- void newImage(int peer, Frame frame);
void updateStatus();
private:
@@ -59,7 +59,7 @@ private:
QTimer status_timer;
- QLabel* video[10];
+ QVector<VideoWidget *> videowidgets;
};
#endif/*__SIMPLERTP_MAINWINDOW_H__*/