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
05afe6ae
Commit
05afe6ae
authored
Oct 06, 2005
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all: support for unicode version of wxwidgets for win32, needs testing for other platform
parent
c377d1bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
configure.ac
configure.ac
+6
-0
modules/gui/wxwidgets/open.cpp
modules/gui/wxwidgets/open.cpp
+1
-1
No files found.
configure.ac
View file @
05afe6ae
...
...
@@ -3881,6 +3881,12 @@ then
fi
VLC_ADD_LDFLAGS([wxwidgets],[`${WX_CONFIG} --libs`])
VLC_ADD_CXXFLAGS([wxwidgets],[`${WX_CONFIG} --cxxflags`])
if ${WX_CONFIG} --unicode
then
# wxwidgets should provide the following flags but does not
# the following is required to compile for win32
VLC_ADD_CXXFLAGS([wxwidgets],[-D_UNICODE -DUNICODE])
fi
if test "$have_libcdio" = "yes"
then
VLC_ADD_LDFLAGS([wxwidgets],[$LIBCDIO_LIBS])
...
...
modules/gui/wxwidgets/open.cpp
View file @
05afe6ae
...
...
@@ -718,7 +718,7 @@ wxPanel *OpenDialog::DiscPanel( wxWindow* parent )
for
(
char
drive_letter
=
'A'
;
drive_letter
<=
'Z'
;
++
drive_letter
)
{
char
drive_name
[
3
]
=
{
drive_letter
,
':'
,
0
};
UINT
type
=
GetDriveType
(
drive_name
);
UINT
type
=
GetDriveType
A
(
drive_name
);
if
(
type
==
DRIVE_CDROM
)
{
psz_default_device
[
0
]
=
drive_letter
;
...
...
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