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
ea293f9e
Commit
ea293f9e
authored
Oct 26, 2006
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
frontport [17287] from branch
parent
c85bee10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
modules/gui/wxwidgets/wxwidgets.hpp
modules/gui/wxwidgets/wxwidgets.hpp
+13
-10
No files found.
modules/gui/wxwidgets/wxwidgets.hpp
View file @
ea293f9e
...
...
@@ -122,26 +122,29 @@ static inline char *wxDnDFromLocale( const wxChar *stupid )
* UTF-8 but also Windows-1252(!) and ISO-8859-15(!) or any
* non-western encoding, it obviously fails.
*/
size_t
i
=
0
;
while
(
stupid
[
i
])
i
++
;
char
psz_local
[
i
+
1
];
if
((
i
>=
1
)
&&
(
stupid
[
i
-
1
]
==
'\n'
))
i
--
;
wxString
str
(
stupid
);
int
i
;
do
size_t
n
=
str
.
Len
();
char
psz_local
[
n
+
1
];
for
(
i
=
0
;
i
<
n
;
i
++
)
psz_local
[
i
]
=
stupid
[
i
];
while
(
i
--
);
psz_local
[
n
]
=
'\0'
;
if
(
psz_local
[
n
-
1
]
==
'\n'
)
psz_local
[
n
-
1
]
=
'\0'
;
return
FromLocaleDup
(
psz_local
);
}
# define wxDnDLocaleFree( string ) free( string )
#else
# define wxDnDFromLocale( string ) wxFromLocale( string )
# define wxDnDLocaleFree( string ) wxLocaleFree( string )
#endif
#define wxDnDLocaleFree( string ) wxLocaleFree( string )
#define WRAPCOUNT 80
#define OPEN_NORMAL 0
...
...
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