Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
432c4ec1
Commit
432c4ec1
authored
Jan 28, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gtk: fixed 'cannot find file.xpm'.
* wxwindows: compilation fix for older wxwindows header.
parent
17bc2d6e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
7 deletions
+8
-7
modules/access/mms/mms.h
modules/access/mms/mms.h
+2
-2
modules/gui/gtk/gtk.glade
modules/gui/gtk/gtk.glade
+0
-1
modules/gui/gtk/gtk_interface.c
modules/gui/gtk/gtk_interface.c
+1
-3
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+5
-1
No files found.
modules/access/mms/mms.h
View file @
432c4ec1
...
...
@@ -2,7 +2,7 @@
* mms.h: MMS access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mms.h,v 1.
6 2002/12/06 13:05:22 sam
Exp $
* $Id: mms.h,v 1.
7 2003/01/28 14:00:49 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -36,7 +36,7 @@ typedef struct url_s
char
*
psz_private
;
}
url_t
;
#define FREE( p ) if( p )
free( p )
#define FREE( p ) if( p )
{ free( p ); (p ) = NULL; }
#define MMS_PROTO_AUTO 0
...
...
modules/gui/gtk/gtk.glade
View file @
432c4ec1
...
...
@@ -511,7 +511,6 @@
<last_modification_time>
Mon, 08 Jul 2002 16:14:58 GMT
</last_modification_time>
</signal>
<label>
File
</label>
<icon>
file.xpm
</icon>
</widget>
<widget>
...
...
modules/gui/gtk/gtk_interface.c
View file @
432c4ec1
...
...
@@ -73,7 +73,6 @@ create_intf_window (void)
GtkWidget
*
menubar_about
;
GtkWidget
*
toolbar_handlebox
;
GtkWidget
*
toolbar
;
GtkWidget
*
tmp_toolbar_icon
;
GtkWidget
*
toolbar_open
;
GtkWidget
*
toolbar_disc
;
GtkWidget
*
toolbar_network
;
...
...
@@ -600,13 +599,12 @@ create_intf_window (void)
gtk_toolbar_set_space_style
(
GTK_TOOLBAR
(
toolbar
),
GTK_TOOLBAR_SPACE_LINE
);
gtk_toolbar_set_button_relief
(
GTK_TOOLBAR
(
toolbar
),
GTK_RELIEF_NONE
);
tmp_toolbar_icon
=
create_pixmap
(
intf_window
,
"file.xpm"
);
toolbar_open
=
gtk_toolbar_append_element
(
GTK_TOOLBAR
(
toolbar
),
GTK_TOOLBAR_CHILD_BUTTON
,
NULL
,
_
(
"File"
),
_
(
"Open a file"
),
NULL
,
tmp_toolbar_icon
,
NULL
,
NULL
);
NULL
,
NULL
,
NULL
);
gtk_widget_ref
(
toolbar_open
);
gtk_object_set_data_full
(
GTK_OBJECT
(
intf_window
),
"toolbar_open"
,
toolbar_open
,
(
GtkDestroyNotify
)
gtk_widget_unref
);
...
...
modules/gui/wxwindows/open.cpp
View file @
432c4ec1
...
...
@@ -2,7 +2,7 @@
* open.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: open.cpp,v 1.
2 2003/01/26 10:36:10 gbazin
Exp $
* $Id: open.cpp,v 1.
3 2003/01/28 14:00:49 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -50,6 +50,10 @@
#include "wxwindows.h"
#ifndef wxRB_SINGLE
#define wxRB_SINGLE 0
#endif
/*****************************************************************************
* Event Table.
*****************************************************************************/
...
...
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