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
405c632c
Commit
405c632c
authored
Feb 13, 2004
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled the preference menu, it is not filled in anyway.
parent
e897573e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
modules/gui/pda/pda.c
modules/gui/pda/pda.c
+5
-1
modules/gui/pda/pda_callbacks.c
modules/gui/pda/pda_callbacks.c
+2
-2
No files found.
modules/gui/pda/pda.c
View file @
405c632c
...
...
@@ -2,7 +2,7 @@
* pda.c : PDA Gtk2 plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: pda.c,v 1.2
0 2004/02/10 20:28:37
jpsaman Exp $
* $Id: pda.c,v 1.2
1 2004/02/13 10:09:46
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* Marc Ariberti <marcari@videolan.org>
...
...
@@ -306,6 +306,10 @@ static void Run( intf_thread_t *p_intf )
/* END OF PLAYLIST GTK_TREE_VIEW */
/* Hide the Preference TAB for now. */
GtkWidget
*
p_preference_tab
=
NULL
;
p_preference_tab
=
gtk_notebook_get_nth_page
(
p_intf
->
p_sys
->
p_notebook
,
5
);
if
(
p_preference_tab
!=
NULL
)
gtk_widget_hide
(
p_preference_tab
);
/* Show the control window */
gtk_widget_show
(
p_intf
->
p_sys
->
p_window
);
...
...
modules/gui/pda/pda_callbacks.c
View file @
405c632c
...
...
@@ -2,7 +2,7 @@
* pda_callbacks.c : Callbacks for the pda Linux Gtk+ plugin.
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: pda_callbacks.c,v 1.2
7 2004/02/10 20:28:37
jpsaman Exp $
* $Id: pda_callbacks.c,v 1.2
8 2004/02/13 10:09:46
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -870,7 +870,7 @@ void onDeletePlaylist(GtkButton *button, gpointer user_data)
#if 0
g_list_foreach (p_rows, (GFunc*)gtk_tree_path_free, NULL);
#endif /* Testing the next line */
g_list_foreach
(
p_rows
,
(
GFunc
*
)
deleteItemFromPlaylist
,
NULL
);
g_list_foreach
(
p_rows
,
deleteItemFromPlaylist
,
NULL
);
g_list_free
(
p_rows
);
}
...
...
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