Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2551b932
Commit
2551b932
authored
Jan 25, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: compile extensions on Qt4.4
parent
1cdeaa80
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
modules/gui/qt4/dialogs/extensions.cpp
modules/gui/qt4/dialogs/extensions.cpp
+5
-0
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+2
-0
No files found.
modules/gui/qt4/dialogs/extensions.cpp
View file @
2551b932
...
@@ -175,8 +175,13 @@ ExtensionDialog::ExtensionDialog( intf_thread_t *_p_intf,
...
@@ -175,8 +175,13 @@ ExtensionDialog::ExtensionDialog( intf_thread_t *_p_intf,
assert
(
p_dialog
);
assert
(
p_dialog
);
msg_Dbg
(
p_intf
,
"Creating a new dialog: '%s'"
,
p_dialog
->
psz_title
);
msg_Dbg
(
p_intf
,
"Creating a new dialog: '%s'"
,
p_dialog
->
psz_title
);
#if HAS_QT45
this
->
setWindowFlags
(
Qt
::
WindowMinMaxButtonsHint
this
->
setWindowFlags
(
Qt
::
WindowMinMaxButtonsHint
|
Qt
::
WindowCloseButtonHint
);
|
Qt
::
WindowCloseButtonHint
);
#else
this
->
setWindowFlags
(
Qt
::
WindowMinMaxButtonsHint
#endif
this
->
setWindowTitle
(
qfu
(
p_dialog
->
psz_title
)
);
this
->
setWindowTitle
(
qfu
(
p_dialog
->
psz_title
)
);
layout
=
new
QGridLayout
(
this
);
layout
=
new
QGridLayout
(
this
);
...
...
modules/gui/qt4/qt4.hpp
View file @
2551b932
...
@@ -42,6 +42,8 @@
...
@@ -42,6 +42,8 @@
# error Please update Qt version to 4.5.1. 4.5.0 is too buggy
# error Please update Qt version to 4.5.1. 4.5.0 is too buggy
#endif
#endif
#define HAS_QT45 ( QT_VERSION >= 0x040500 )
enum
{
enum
{
QT_NORMAL_MODE
=
0
,
QT_NORMAL_MODE
=
0
,
QT_ALWAYS_VIDEO_MODE
,
QT_ALWAYS_VIDEO_MODE
,
...
...
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