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
2822504c
Commit
2822504c
authored
Oct 07, 2002
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to remove progressbar code.
parent
85c211fe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
8 deletions
+2
-8
plugins/familiar/familiar.c
plugins/familiar/familiar.c
+1
-6
plugins/familiar/familiar.h
plugins/familiar/familiar.h
+1
-2
No files found.
plugins/familiar/familiar.c
View file @
2822504c
...
...
@@ -2,7 +2,7 @@
* familiar.c : familiar plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: familiar.c,v 1.8.2.
6 2002/10/02 21:41:50
jpsaman Exp $
* $Id: familiar.c,v 1.8.2.
7 2002/10/07 21:49:53
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -204,16 +204,11 @@ static void Run( intf_thread_t *p_intf )
GTK_OBJECT
(
p_intf
->
p_sys
->
p_window
),
"notebook"
)
);
// gtk_widget_hide( GTK_WIDGET(p_intf->p_sys->p_notebook) );
/* Create our config hash table and associate it with the dialog box */
// config_hash_table = g_hash_table_new( NULL, NULL );
// gtk_object_set_data( GTK_OBJECT(config_dialog),
// "config_hash_table", config_hash_table );
p_intf
->
p_sys
->
p_progess
=
GTK_PROGRESS_BAR
(
gtk_object_get_data
(
GTK_OBJECT
(
p_intf
->
p_sys
->
p_window
),
"progress"
)
);
gtk_widget_hide
(
GTK_WIDGET
(
p_intf
->
p_sys
->
p_progess
)
);
p_intf
->
p_sys
->
p_clist
=
GTK_CLIST
(
gtk_object_get_data
(
GTK_OBJECT
(
p_intf
->
p_sys
->
p_window
),
"clistmedia"
)
);
gtk_clist_set_column_visibility
(
GTK_CLIST
(
p_intf
->
p_sys
->
p_clist
),
2
,
FALSE
);
...
...
plugins/familiar/familiar.h
View file @
2822504c
...
...
@@ -2,7 +2,7 @@
* familiar.h: private Gtk+ interface description
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: familiar.h,v 1.6.2.
2 2002/10/02 19:58:45
jpsaman Exp $
* $Id: familiar.h,v 1.6.2.
3 2002/10/07 21:49:53
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -31,7 +31,6 @@ typedef struct intf_sys_s
/* windows and widgets */
GtkWidget
*
p_window
;
/* main window */
GtkNotebook
*
p_notebook
;
GtkProgressBar
*
p_progess
;
GtkCList
*
p_clist
;
// GHashTable * config_hash_table;
boolean_t
b_autoplayfile
;
...
...
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