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
ea8e3287
Commit
ea8e3287
authored
May 01, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: Warn about Qt version 4.5.0
This version is quite broken...
parent
0fa8b0e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+0
-7
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+3
-0
No files found.
modules/gui/qt4/menus.cpp
View file @
ea8e3287
...
...
@@ -1408,14 +1408,7 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf )
RecentsMRL
*
rmrl
=
RecentsMRL
::
getInstance
(
p_intf
);
QList
<
QString
>
l
=
rmrl
->
recents
();
#if QT_VERSION == 0x040500
//Workaround for Qt bug #176201
QList
<
QAction
*>
actions
=
recentsMenu
->
actions
();
for
(
int
i
=
0
;
i
<
actions
.
size
();
++
i
)
actions
.
at
(
i
)
->
deleteLater
();
#else
recentsMenu
->
clear
();
#endif
if
(
!
l
.
size
()
)
{
...
...
modules/gui/qt4/qt4.hpp
View file @
ea8e3287
...
...
@@ -39,6 +39,9 @@
#if ( QT_VERSION < 0x040300 )
# error Update your Qt version
#endif
#if QT_VERSION == 0x040500
# warning Please update Qt version to 4.5.1. This warning will become an error.
#endif
enum
{
QT_NORMAL_MODE
=
0
,
...
...
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