Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
b6a2c4a4
Commit
b6a2c4a4
authored
Jul 04, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Qt instead of Qt4
parent
6ef3c715
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
modules/gui/qt4/components/controller.cpp
modules/gui/qt4/components/controller.cpp
+1
-1
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+1
-1
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+5
-5
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+1
-1
No files found.
modules/gui/qt4/components/controller.cpp
View file @
b6a2c4a4
...
...
@@ -1065,7 +1065,7 @@ static int FullscreenControllerWidgetFullscreenChanged( vlc_object_t *vlc_object
vout_thread_t
*
p_vout
=
(
vout_thread_t
*
)
vlc_object
;
msg_Dbg
(
p_vout
,
"Qt
4
: Fullscreen state changed"
);
msg_Dbg
(
p_vout
,
"Qt: Fullscreen state changed"
);
FullscreenControllerWidget
*
p_fs
=
(
FullscreenControllerWidget
*
)
data
;
p_fs
->
fullscreenChanged
(
p_vout
,
new_val
.
b_bool
,
var_GetInteger
(
p_vout
,
"mouse-hide-timeout"
)
);
...
...
modules/gui/qt4/dialogs/help.cpp
View file @
b6a2c4a4
...
...
@@ -114,7 +114,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf)
+
qfu
(
VLC_CompileBy
()
)
+
" on "
+
qfu
(
VLC_CompileHost
()
)
+
+
" ("
__DATE__
" "
__TIME__
").
\n
"
+
qtr
(
"Compiler: "
)
+
qfu
(
VLC_Compiler
()
)
+
".
\n
"
+
qtr
(
"You are using the Qt
4
Interface.
\n\n
"
)
+
qtr
(
"You are using the Qt Interface.
\n\n
"
)
+
qtr
(
"Copyright (C) "
)
+
COPYRIGHT_YEARS
+
qtr
(
" by the VideoLAN Team.
\n
"
)
+
"http://www.videolan.org"
);
...
...
modules/gui/qt4/qt4.cpp
View file @
b6a2c4a4
/*****************************************************************************
* qt4.cpp : Q
T4
interface
* qt4.cpp : Q
t
interface
****************************************************************************
* Copyright © 2006-2009 the VideoLAN team
* $Id$
...
...
@@ -311,7 +311,7 @@ vlc_module_end ()
/*****************************************/
/* Ugly, but the Qt
4
interface assumes single instance anyway */
/* Ugly, but the Qt interface assumes single instance anyway */
static
vlc_sem_t
ready
;
static
QMutex
lock
;
static
bool
busy
=
false
;
...
...
@@ -360,7 +360,7 @@ static int Open( vlc_object_t *p_this, bool isDialogProvider )
QMutexLocker
locker
(
&
lock
);
if
(
busy
)
{
msg_Err
(
p_this
,
"cannot start Qt
4
multiple times"
);
msg_Err
(
p_this
,
"cannot start Qt multiple times"
);
return
VLC_EGENERIC
;
}
...
...
@@ -401,7 +401,7 @@ static int Open( vlc_object_t *p_this, bool isDialogProvider )
return
VLC_SUCCESS
;
}
/* Open
qt4
interface */
/* Open
Qt
interface */
static
int
OpenIntf
(
vlc_object_t
*
p_this
)
{
return
Open
(
p_this
,
false
);
...
...
@@ -607,7 +607,7 @@ static int WindowOpen( vout_window_t *p_wnd, const vout_window_cfg_t *cfg )
(
intf_thread_t
*
)
var_InheritAddress
(
p_wnd
,
"qt4-iface"
);
if
(
!
p_intf
)
{
/* If another interface is used, this plugin cannot work */
msg_Dbg
(
p_wnd
,
"Qt
4
interface not found"
);
msg_Dbg
(
p_wnd
,
"Qt interface not found"
);
return
VLC_EGENERIC
;
}
...
...
modules/gui/qt4/qt4.hpp
View file @
b6a2c4a4
/*****************************************************************************
* qt4.hpp : Q
T4
interface
* qt4.hpp : Q
t
interface
****************************************************************************
* Copyright (C) 2006-2009 the VideoLAN team
* $Id$
...
...
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