Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
eaf3e693
Commit
eaf3e693
authored
Apr 25, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Dialog size. Hope to fix windows bug.
parent
89a7f21f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/gui/qt4/dialogs/mediainfo.cpp
modules/gui/qt4/dialogs/mediainfo.cpp
+1
-1
modules/gui/qt4/dialogs/messages.cpp
modules/gui/qt4/dialogs/messages.cpp
+1
-1
No files found.
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
eaf3e693
...
@@ -44,6 +44,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput ) :
...
@@ -44,6 +44,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput ) :
p_input
=
NULL
;
p_input
=
NULL
;
setWindowTitle
(
qtr
(
"Media information"
)
);
setWindowTitle
(
qtr
(
"Media information"
)
);
resize
(
500
,
450
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
IT
=
new
InfoTab
(
this
,
p_intf
,
true
)
;
IT
=
new
InfoTab
(
this
,
p_intf
,
true
)
;
...
@@ -59,7 +60,6 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput ) :
...
@@ -59,7 +60,6 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput ) :
ON_TIMEOUT
(
update
()
);
ON_TIMEOUT
(
update
()
);
var_AddCallback
(
THEPL
,
"item-change"
,
ItemChanged
,
this
);
var_AddCallback
(
THEPL
,
"item-change"
,
ItemChanged
,
this
);
}
}
readSettings
(
"mediainfo"
,
QSize
(
500
,
450
)
);
}
}
MediaInfoDialog
::~
MediaInfoDialog
()
MediaInfoDialog
::~
MediaInfoDialog
()
...
...
modules/gui/qt4/dialogs/messages.cpp
View file @
eaf3e693
...
@@ -39,7 +39,7 @@ MessagesDialog *MessagesDialog::instance = NULL;
...
@@ -39,7 +39,7 @@ MessagesDialog *MessagesDialog::instance = NULL;
MessagesDialog
::
MessagesDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
MessagesDialog
::
MessagesDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
{
setWindowTitle
(
qtr
(
"Messages"
)
);
setWindowTitle
(
qtr
(
"Messages"
)
);
resize
(
600
,
400
);
resize
(
600
,
450
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"&Close"
)
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"&Close"
)
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment