Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Revision
Latest Revision
Next Revision
→
Blame
Revision Log
source:
tests
/
embedded
/
embedded.cpp
@
1004
Last change
on this file since 1004 was
1004
, checked in by
Dmitry A. Kuminov
,
14 years ago
tests: embedded: Reproduce
#203
behavior.
File size:
3.4 KB
Line
1
#include
<os2.h>
2
3
#include
<QDebug>
4
#include
<QtGui>
5
6
class
VideoWidget
:
public
QFrame
7
{
8
public
:
9
10
VideoWidget
()
11
{
12
layout
=
new
QHBoxLayout
(
this
);
13
layout
->
setContentsMargins
(
0
,
0
,
0
,
0
);
14
setLayout
(
layout
);
15
stable
=
0
;
16
show
();