Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
f7629a68
Commit
f7629a68
authored
Apr 23, 2003
by
Eric Petit
Browse files
modules/gui/beos/VlcWrapper.cpp: fixed the issue with untranslated
strings and "...". i18n seems OK under BeOS now.
parent
a39c3623
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/beos/VlcWrapper.cpp
View file @
f7629a68
...
...
@@ -2,7 +2,7 @@
* VlcWrapper.cpp: BeOS plugin for vlc (derived from MacOS X port)
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: VlcWrapper.cpp,v 1.2
7
2003/04/2
2
1
6:36:16
titer Exp $
* $Id: VlcWrapper.cpp,v 1.2
8
2003/04/2
3
1
5:18:24
titer Exp $
*
* Authors: Florian G. Pflug <fgp@phlo.org>
* Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
@@ -43,9 +43,10 @@ extern "C"
const
char
*
_AddEllipsis
(
char
*
string
)
{
BString
newString
(
string
);
newString
<<
B_UTF8_ELLIPSIS
;
return
newString
.
String
();
char
*
temp
;
temp
=
(
char
*
)
calloc
(
strlen
(
string
)
+
4
,
1
);
sprintf
(
temp
,
"%s%s"
,
string
,
B_UTF8_ELLIPSIS
);
return
temp
;
}
/* constructor */
...
...
Write
Preview
Supports
Markdown
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