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
24cddfa0
Commit
24cddfa0
authored
May 16, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Plain Diff
Merge commit 'origin/1.0-bugfix'
parents
d1d3d7b4
6dce48f6
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
70 additions
and
69 deletions
+70
-69
modules/gui/pda/pda_callbacks.c
modules/gui/pda/pda_callbacks.c
+1
-1
modules/gui/pda/pda_support.c
modules/gui/pda/pda_support.c
+3
-1
modules/misc/gtk_main.c
modules/misc/gtk_main.c
+3
-3
src/osd/osd.c
src/osd/osd.c
+63
-64
No files found.
modules/gui/pda/pda_callbacks.c
View file @
24cddfa0
...
...
@@ -136,7 +136,7 @@ static void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options,
(
const
char
*
)
name
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
(
mtime_t
)
0
,
i_
options
,
(
const
char
**
)
ppsz_options
,
VLC_INPUT_OPTION_TRUSTED
,
i_
size
,
(
const
char
**
)
ppsz_options
,
VLC_INPUT_OPTION_TRUSTED
,
true
,
pl_Unlocked
);
}
...
...
modules/gui/pda/pda_support.c
View file @
24cddfa0
...
...
@@ -9,6 +9,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
#include <gtk/gtk.h>
...
...
@@ -75,6 +76,7 @@ GtkWidget*
create_pixmap
(
GtkWidget
*
widget
,
const
gchar
*
filename
)
{
VLC_UNUSED
(
widget
);
gchar
*
pathname
=
NULL
;
GtkWidget
*
pixmap
;
...
...
@@ -136,7 +138,7 @@ glade_set_atk_action_description (AtkAction *action,
for
(
i
=
0
;
i
<
n_actions
;
i
++
)
{
if
(
!
strcmp
(
atk_action_get_name
(
action
,
i
),
action_name
))
atk_action_set_description
(
action
,
i
,
description
)
atk_action_set_description
(
action
,
i
,
description
)
;
}
}
modules/misc/gtk_main.c
View file @
24cddfa0
...
...
@@ -94,7 +94,7 @@ static int Open( vlc_object_t *p_this )
if
(
i_refcount
>
0
)
{
i_refcount
++
;
vlc_mutex_unlock
(
lock
);
vlc_mutex_unlock
(
&
gtk_
lock
);
return
VLC_SUCCESS
;
}
...
...
@@ -110,11 +110,11 @@ static int Open( vlc_object_t *p_this )
/* Launch the gtk_main() thread. It will not return until it has
* called gdk_threads_enter(), which ensures us thread safety. */
if
(
vlc_thread_create
(
p_gtk_main
,
"gtk_main"
,
GtkMain
,
VLC_THREAD_PRIORITY_LOW
,
true
)
)
VLC_THREAD_PRIORITY_LOW
)
)
{
vlc_object_release
(
p_gtk_main
);
i_refcount
--
;
vlc_mutex_unlock
(
lock
);
vlc_mutex_unlock
(
&
gtk_
lock
);
return
VLC_ETHREAD
;
}
...
...
src/osd/osd.c
View file @
24cddfa0
This diff is collapsed.
Click to expand it.
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